結果

問題 No.1026 OGAWA's New Keyboard
ユーザー kept1994kept1994
提出日時 2022-05-04 19:33:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 1,000 ms
コード長 326 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 98,164 KB
最終ジャッジ日時 2024-07-03 22:42:34
合計ジャッジ時間 3,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,508 KB
testcase_01 AC 42 ms
53,688 KB
testcase_02 AC 39 ms
53,816 KB
testcase_03 AC 39 ms
54,660 KB
testcase_04 AC 195 ms
98,164 KB
testcase_05 AC 73 ms
74,656 KB
testcase_06 AC 81 ms
77,128 KB
testcase_07 AC 157 ms
90,724 KB
testcase_08 AC 72 ms
73,836 KB
testcase_09 AC 41 ms
53,848 KB
testcase_10 AC 55 ms
64,052 KB
testcase_11 AC 53 ms
62,308 KB
testcase_12 AC 44 ms
55,880 KB
testcase_13 AC 41 ms
54,124 KB
testcase_14 AC 42 ms
55,896 KB
testcase_15 AC 42 ms
54,740 KB
testcase_16 AC 51 ms
63,256 KB
testcase_17 AC 109 ms
81,816 KB
testcase_18 AC 55 ms
64,300 KB
testcase_19 AC 102 ms
80,720 KB
testcase_20 AC 41 ms
55,056 KB
testcase_21 AC 40 ms
54,520 KB
testcase_22 AC 49 ms
62,232 KB
testcase_23 AC 55 ms
63,988 KB
testcase_24 AC 137 ms
87,324 KB
testcase_25 AC 68 ms
72,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from collections import deque
import sys

def main():
    N = int(input())
    q = deque()
    for _ in range(N):
        T, S = input().split()
        if T == "0":
            q.append(S)
        else:
            q.appendleft(S)
    print(*q, sep="")
    return

if __name__ == '__main__':
    main()
0