結果

問題 No.2827 Enter User Name to Play
ユーザー miya145592miya145592
提出日時 2024-08-02 21:56:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-08-02 21:56:46
合計ジャッジ時間 2,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,280 KB
testcase_01 AC 31 ms
52,492 KB
testcase_02 AC 31 ms
52,732 KB
testcase_03 AC 32 ms
52,200 KB
testcase_04 AC 32 ms
53,172 KB
testcase_05 AC 31 ms
52,528 KB
testcase_06 AC 34 ms
51,944 KB
testcase_07 AC 30 ms
52,816 KB
testcase_08 AC 30 ms
51,880 KB
testcase_09 AC 30 ms
52,356 KB
testcase_10 AC 30 ms
52,032 KB
testcase_11 AC 31 ms
51,940 KB
testcase_12 AC 31 ms
53,136 KB
testcase_13 AC 31 ms
52,596 KB
testcase_14 AC 32 ms
51,876 KB
testcase_15 AC 32 ms
52,772 KB
testcase_16 AC 32 ms
53,688 KB
testcase_17 AC 31 ms
52,684 KB
testcase_18 AC 31 ms
52,808 KB
testcase_19 AC 36 ms
53,084 KB
testcase_20 AC 34 ms
53,296 KB
testcase_21 AC 33 ms
53,000 KB
testcase_22 AC 32 ms
52,592 KB
testcase_23 AC 30 ms
51,944 KB
testcase_24 AC 29 ms
52,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
S = input().strip()
P = list(map(int, input().split()))
T = []
for i in range(N):
    T.append(S[P[i]-1])
print("".join(T))
0