TopCoder

User's AC Ratio

100.0% (2/2)

Submission's AC Ratio

100.0% (2/2)

Tags

Description

如何生成又長又好記的密碼一直是個亙古難題。其中有一個方法是從字典中隨機挑選四個單字以某個順序串接,記憶時便可編一個故事把四個字連結起來。現在你已挑選好了四個單字,並決定好了順序,請你寫一個程式把他們串接起來。

Ref: XKCD comics (https://imgs.xkcd.com/comics/password_strength.png)

Input Format

輸入第一行是 $4$ 個正整數 $a_1, a_2, a_3, a_4$ 代表串接順序,第 $a_i$ 個字串要被接在第 $i$ 個位置。
接下來 $4$ 行每行一個字串,代表生成的單詞。

輸入保證 $a_1, a_2, a_3, a_4$ 一定是 $1, 2, 3, 4$ 的排列,以及所有字串長不超過 $100$。但輸入並不保證字串一定是字典中的單詞。

Output Format

輸出一行一個串接好的密碼。

Sample Input 1

2 3 1 4
fish
cactus
jelly
unicorn

Sample Output 1

cactusjellyfishunicorn

Hints

Problem Source

Subtasks

No. Testdata Range Constraints Score
1 0 範例測資 0
2 1~8 無額外限制 100

Testdata and Limits

No. Time Limit (ms) Memory Limit (VSS, KiB) Output Limit (KiB) Subtasks
0 1000 524288 65536 1
1 1000 524288 65536 2
2 1000 524288 65536 2
3 1000 524288 65536 2
4 1000 524288 65536 2
5 1000 524288 65536 2
6 1000 524288 65536 2
7 1000 524288 65536 2
8 1000 524288 65536 2