mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-25 07:31:59 +00:00
parent
24b8b5d7a2
commit
520a64a9ed
14
AtCoder/ABC219/B/B.cpp
Normal file
14
AtCoder/ABC219/B/B.cpp
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
string s[4], t;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
cin >> s[1] >> s[2] >> s[3] >> t;
|
||||||
|
for (auto c : t) {
|
||||||
|
cout << s[c - '0'];
|
||||||
|
}
|
||||||
|
cout << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user