欢迎来到起遇信息学
起遇信息学正处于上线筹建阶段,以下功能已全部开放免费体验: ✅ 完整题库浏览与代码提交评测(C / C++ / Python / Java 等) ✅ 入门到进阶的系列课程试读、作业与考试 ✅ AI 提示、AI 作业分析等智能助教功能 ✅ 赛事模拟与个人能力报告 ✅ 邮箱注册开放 ⏳ 付费课程订阅与微信/支付宝支付通道 ⏳ 手机号登录,微信扫码登录、微信公众号绑定 使用中如遇任何问题,欢迎通过页面底部 **"联系我们"** 与我们沟通。
CF1284A.New Year and Naming
New Year and Naming
Happy new year! The year 2020 is also known as Year Gyeongja (경자년, gyeongja-nyeon) in Korea. Where did the name come from? Let's briefly look at the Gapja system, which is traditionally used in Korea to name the years.
There are two sequences of strings and strings . These strings contain only lowercase letters. There might be duplicates among these strings.
Let's call a concatenation of strings and as the string that is obtained by writing down strings and one right after another without changing the order. For example, the concatenation of the strings "code" and "forces" is the string "codeforces".
The year 1 has a name which is the concatenation of the two strings and . When the year increases by one, we concatenate the next two strings in order from each of the respective sequences. If the string that is currently being used is at the end of its sequence, we go back to the first string in that sequence.
For example, if {"a", "b", "c"}, {"d", "e", "f", "g"}, the following table denotes the resulting year names. Note that the names of the years may repeat.

You are given two sequences of strings of size and and also queries. For each query, you will be given the current year. Could you find the name corresponding to the given year, according to the Gapja system?
Input
The first line contains two integers ().
The next line contains strings . Each string contains only lowercase letters, and they are separated by spaces. The length of each string is at least and at most .
The next line contains strings . Each string contains only lowercase letters, and they are separated by spaces. The length of each string is at least and at most .
Among the given strings may be duplicates (that is, they are not necessarily all different).
The next line contains a single integer ().
In the next lines, an integer () is given, denoting the year we want to know the name for.
Output
Print lines. For each line, print the name of the year as per the rule described above.
Note
The first example denotes the actual names used in the Gapja system. These strings usually are either a number or the name of some animal.
Samples
10 12
sin im gye gap eul byeong jeong mu gi gyeong
yu sul hae ja chuk in myo jin sa o mi sin
14
1
2
3
4
10
11
12
13
73
2016
2017
2018
2019
2020
sinyu
imsul
gyehae
gapja
gyeongo
sinmi
imsin
gyeyu
gyeyu
byeongsin
jeongyu
musul
gihae
gyeongja
在线编程 IDE
建议全屏模式获得最佳体验
| 进入全屏编程 | Alt+E |
| 递交评测 | Ctrl+Enter |
| 注释/取消注释 | Ctrl+/ |
| 缩放字体 | Ctrl+滚轮 |