結果

問題 No.1335 1337
ユーザー Rishabh MishraRishabh Mishra
提出日時 2021-01-15 21:23:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,365 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 165,772 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 22:32:54
合計ジャッジ時間 2,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define mp make_pair
#define mt make_tuple
#define pb push_back
#define fi first
#define se second
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define repi(i,a,b) for(int i=a;i>=b;i--)
#define vi vector<int>
#define vvi vector<vector<int> >
#define vll vector<long long int>
#define vvll vector<vector<long long> >
#define vb vector<bool>
#define pii pair<int,int>
#define tiii tuple<int,int,int>
#define mod 1000000007
#define mem1(x) memset(x,1,sizeof(x))
#define mem0(x) memset(x,0,sizeof(x))
#define memn1(x) memset(x,-1,sizeof(x))
#define fastio ios_base::sync_with_stdio(false),cin.tie(NULL)
#define inf 1e17+1
template<class x> x gcd(x a, x b) {return (b == 0) ? a : gcd(b, a % b);}
template<class x> x powerm(x a, x n) {if (n == 0)return 1; x b = powerm(a, n / 2) % mod; return (n & 1) ? ((b * b) % mod * a) % mod : (b * b) % mod;}
const int cnst = 1000001;

void solve() {
	string a, b;
	cin >> a >> b;
	for (char &i : b) {
		if (i < 'a') {
			i = a[i - '0'];
		}
	}
	cout << b << endl;

}

int main() {
#ifndef ONLINE_JUDGE
	//for reading input from input.txt
	freopen("input.txt", "r", stdin);
	//for writing output in output.txt
	freopen("output.txt", "w", stdout);
#endif
	fastio;
	int t = 1;
	// cin >> t;
	while (t--) {
		solve();
	}
}
0