2 条题解

  • 0
    @ 2024-3-11 16:18:17

    #include<

    • 0
      @ 2023-8-7 14:22:34
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
      	ios::sync_with_stdio(0);
      	cin.tie(0);
      	cout.tie(0);
      	char ch;
      	int n,s=0;
      	cin>>ch>>n;
      	int c=ch-'a';
      	for(int i=1;i<=n;i++)
      	{
      		string a;
      		int x;
      		cin>>a>>x;
      		x=-x;
      		while(x<0)x+=26;
      		for(int i=0;i<a.size();i++)
      		{
      			int now=(a[i]-'a'+x)%26;
      			if(now==c)s++;
      		}
      	}
      	cout<<s;
      	return 0;
      }
      
      • 1

      信息

      ID
      32
      时间
      1000ms
      内存
      256MiB
      难度
      7
      标签
      (无)
      递交数
      215
      已通过
      53
      上传者