結果

問題 No.1026 OGAWA's New Keyboard
ユーザー lloyzlloyz
提出日時 2022-07-26 00:52:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 205 bytes
コンパイル時間 1,575 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 84,552 KB
最終ジャッジ日時 2024-07-08 04:01:46
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,216 KB
testcase_01 AC 34 ms
54,900 KB
testcase_02 AC 36 ms
53,816 KB
testcase_03 AC 35 ms
54,116 KB
testcase_04 AC 129 ms
78,764 KB
testcase_05 AC 59 ms
71,588 KB
testcase_06 AC 61 ms
74,216 KB
testcase_07 AC 122 ms
84,552 KB
testcase_08 AC 59 ms
70,632 KB
testcase_09 AC 36 ms
53,364 KB
testcase_10 AC 46 ms
62,820 KB
testcase_11 AC 41 ms
57,792 KB
testcase_12 AC 37 ms
54,176 KB
testcase_13 AC 36 ms
54,164 KB
testcase_14 AC 37 ms
55,180 KB
testcase_15 AC 38 ms
56,100 KB
testcase_16 AC 41 ms
56,452 KB
testcase_17 AC 88 ms
79,396 KB
testcase_18 AC 55 ms
61,880 KB
testcase_19 AC 106 ms
79,456 KB
testcase_20 AC 45 ms
54,748 KB
testcase_21 AC 44 ms
54,480 KB
testcase_22 AC 49 ms
57,088 KB
testcase_23 AC 56 ms
62,160 KB
testcase_24 AC 111 ms
81,876 KB
testcase_25 AC 55 ms
68,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

ans = deque()
for _ in range(int(input())):
    t, s = input().split()
    if t == '0':
        ans.append(s)
    elif t == '1':
        ans.appendleft(s)
print(''.join(ans))
0