結果

問題 No.1026 OGAWA's New Keyboard
ユーザー 310icecrystal310icecrystal
提出日時 2023-07-05 06:36:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 1,000 ms
コード長 224 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 85,048 KB
最終ジャッジ日時 2024-07-19 01:03:42
合計ジャッジ時間 2,704 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,240 KB
testcase_01 AC 41 ms
53,444 KB
testcase_02 AC 40 ms
53,528 KB
testcase_03 AC 42 ms
53,832 KB
testcase_04 AC 155 ms
80,236 KB
testcase_05 AC 68 ms
73,936 KB
testcase_06 AC 78 ms
76,732 KB
testcase_07 AC 148 ms
85,048 KB
testcase_08 AC 70 ms
72,704 KB
testcase_09 AC 42 ms
53,928 KB
testcase_10 AC 54 ms
63,032 KB
testcase_11 AC 49 ms
57,296 KB
testcase_12 AC 43 ms
54,296 KB
testcase_13 AC 40 ms
53,868 KB
testcase_14 AC 42 ms
55,500 KB
testcase_15 AC 42 ms
55,100 KB
testcase_16 AC 49 ms
57,984 KB
testcase_17 AC 102 ms
79,876 KB
testcase_18 AC 53 ms
63,776 KB
testcase_19 AC 100 ms
79,880 KB
testcase_20 AC 42 ms
54,124 KB
testcase_21 AC 41 ms
53,444 KB
testcase_22 AC 48 ms
55,964 KB
testcase_23 AC 53 ms
63,120 KB
testcase_24 AC 132 ms
82,360 KB
testcase_25 AC 64 ms
70,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

from collections import deque
Deq = deque()
for _ in range(N):
    t,s = map(str,input().split())
    if t == "0":
        Deq.append(s)
    else:
        Deq.appendleft(s)
li = list(Deq)
print("".join(li))
0