結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 AC 38 ms
53,504 KB
testcase_02 AC 35 ms
53,504 KB
testcase_03 AC 36 ms
53,376 KB
testcase_04 AC 189 ms
109,312 KB
testcase_05 AC 68 ms
72,064 KB
testcase_06 AC 68 ms
73,856 KB
testcase_07 AC 143 ms
96,896 KB
testcase_08 AC 67 ms
71,168 KB
testcase_09 AC 39 ms
54,016 KB
testcase_10 AC 52 ms
62,336 KB
testcase_11 AC 46 ms
55,680 KB
testcase_12 AC 40 ms
54,528 KB
testcase_13 AC 36 ms
53,376 KB
testcase_14 AC 36 ms
53,632 KB
testcase_15 AC 37 ms
54,528 KB
testcase_16 AC 44 ms
56,064 KB
testcase_17 AC 101 ms
84,736 KB
testcase_18 AC 50 ms
61,824 KB
testcase_19 AC 98 ms
84,736 KB
testcase_20 AC 38 ms
54,016 KB
testcase_21 AC 35 ms
53,504 KB
testcase_22 AC 42 ms
55,808 KB
testcase_23 AC 50 ms
61,696 KB
testcase_24 AC 127 ms
91,128 KB
testcase_25 AC 65 ms
67,968 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