結果

問題 No.1026 OGAWA's New Keyboard
ユーザー flippergoflippergo
提出日時 2020-12-24 16:14:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 200 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 84,184 KB
最終ジャッジ日時 2024-09-21 16:57:09
合計ジャッジ時間 2,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,212 KB
testcase_01 AC 38 ms
53,420 KB
testcase_02 AC 39 ms
54,860 KB
testcase_03 AC 36 ms
55,392 KB
testcase_04 AC 136 ms
78,824 KB
testcase_05 AC 64 ms
73,156 KB
testcase_06 AC 67 ms
74,116 KB
testcase_07 AC 136 ms
84,184 KB
testcase_08 AC 63 ms
71,468 KB
testcase_09 AC 40 ms
54,592 KB
testcase_10 AC 50 ms
62,256 KB
testcase_11 AC 50 ms
57,592 KB
testcase_12 AC 43 ms
54,660 KB
testcase_13 AC 40 ms
53,836 KB
testcase_14 AC 40 ms
54,384 KB
testcase_15 AC 41 ms
55,536 KB
testcase_16 AC 47 ms
56,696 KB
testcase_17 AC 94 ms
79,636 KB
testcase_18 AC 48 ms
63,316 KB
testcase_19 AC 88 ms
79,328 KB
testcase_20 AC 41 ms
53,928 KB
testcase_21 AC 42 ms
54,520 KB
testcase_22 AC 47 ms
56,748 KB
testcase_23 AC 52 ms
62,204 KB
testcase_24 AC 121 ms
81,904 KB
testcase_25 AC 60 ms
69,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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