結果

問題 No.1335 1337
ユーザー sten_sansten_san
提出日時 2021-01-15 21:55:33
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 193,432 KB
最終ジャッジ日時 2025-01-17 19:16:00
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template <typename T> using vec = vector<T>;
template <typename T> using vvec = vec<vec<T>>;
template <typename T> using lqueue = priority_queue<T, vector<T>, greater<T>>;
template <typename T> using gqueue = priority_queue<T, vector<T>, less<T>>;

int main() {
    string a, s; cin >> a >> s;

    for (auto c : s) {
        if (isalpha(c)) {
            cout << c;
            continue;
        }
        cout << a[c - '0'];
    }
    cout << endl;
}

0