結果
| 問題 |
No.1335 1337
|
| コンテスト | |
| ユーザー |
DaYuanChi
|
| 提出日時 | 2021-01-19 01:36:12 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 262 bytes |
| コンパイル時間 | 1,637 ms |
| コンパイル使用メモリ | 167,512 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-14 23:19:33 |
| 合計ジャッジ時間 | 2,500 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 14 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
string s, t; cin >> s >> t;
for(int i = 0; i < t.size(); i++){
if(!islower(t[i])) t[i] = s[t[i]-'0'];
}
cout << t << endl;
return 0;
}
DaYuanChi