Hello 2020 A.New Year and Naming
Posted c4lnn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hello 2020 A.New Year and Naming相关的知识,希望对你有一定的参考价值。
题目:https://codeforces.com/contest/1284/problem/A
思路:输出 (s[(y-1)\%n]+t[(y-1)\%m]) 即可
#include<bits/stdc++.h>
using namespace std;
const int N=22;
int n,m;
string s[N],t[N];
int q;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
//freopen("in.txt","r",stdin);
cin>>n>>m;
for(int i=0;i<n;i++) cin>>s[i];
for(int i=0;i<m;i++) cin>>t[i];
cin>>q;
for(int i=1;i<=q;i++)
{
int x;
cin>>x;
x--;
cout<<s[x%n]<<t[x%m]<<endl;
}
return 0;
}
以上是关于Hello 2020 A.New Year and Naming的主要内容,如果未能解决你的问题,请参考以下文章
CF Hello2020 D. New Year and Conference
CF Hello 2020 E.New Year and Castle Construction