結果

問題 No.1026 OGAWA's New Keyboard
ユーザー miya145592miya145592
提出日時 2023-05-19 00:51:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 1,000 ms
コード長 210 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 109,508 KB
最終ジャッジ日時 2024-12-17 13:32:27
合計ジャッジ時間 3,209 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,508 KB
testcase_01 AC 38 ms
55,176 KB
testcase_02 AC 40 ms
54,252 KB
testcase_03 AC 39 ms
54,128 KB
testcase_04 AC 202 ms
109,508 KB
testcase_05 AC 63 ms
72,276 KB
testcase_06 AC 66 ms
74,200 KB
testcase_07 AC 165 ms
96,992 KB
testcase_08 AC 65 ms
71,244 KB
testcase_09 AC 42 ms
53,760 KB
testcase_10 AC 53 ms
62,400 KB
testcase_11 AC 46 ms
56,880 KB
testcase_12 AC 40 ms
55,136 KB
testcase_13 AC 39 ms
54,568 KB
testcase_14 AC 40 ms
53,876 KB
testcase_15 AC 41 ms
54,924 KB
testcase_16 AC 48 ms
57,948 KB
testcase_17 AC 103 ms
84,992 KB
testcase_18 AC 48 ms
62,092 KB
testcase_19 AC 99 ms
85,176 KB
testcase_20 AC 41 ms
54,920 KB
testcase_21 AC 39 ms
54,592 KB
testcase_22 AC 45 ms
56,028 KB
testcase_23 AC 51 ms
62,088 KB
testcase_24 AC 139 ms
91,020 KB
testcase_25 AC 62 ms
68,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
TS = [input().split() for _ in range(N)]
ans = deque()
for t, s in TS:
    if t=="0":
        ans.append(s)
    else:
        ans.appendleft(s)
print("".join(ans))
0