結果

問題 No.1026 OGAWA's New Keyboard
ユーザー splash9494splash9494
提出日時 2020-05-05 01:42:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 257 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 123,864 KB
最終ジャッジ日時 2024-09-16 05:05:48
合計ジャッジ時間 2,691 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,492 KB
testcase_01 AC 37 ms
53,144 KB
testcase_02 AC 36 ms
52,504 KB
testcase_03 AC 36 ms
53,056 KB
testcase_04 AC 146 ms
123,864 KB
testcase_05 AC 49 ms
64,756 KB
testcase_06 AC 47 ms
64,344 KB
testcase_07 AC 104 ms
99,056 KB
testcase_08 AC 45 ms
62,300 KB
testcase_09 AC 36 ms
52,400 KB
testcase_10 AC 38 ms
54,204 KB
testcase_11 AC 38 ms
54,020 KB
testcase_12 AC 37 ms
54,532 KB
testcase_13 AC 36 ms
52,072 KB
testcase_14 AC 36 ms
53,352 KB
testcase_15 AC 37 ms
53,508 KB
testcase_16 AC 38 ms
53,208 KB
testcase_17 AC 71 ms
83,796 KB
testcase_18 AC 38 ms
53,280 KB
testcase_19 AC 70 ms
83,040 KB
testcase_20 AC 36 ms
52,752 KB
testcase_21 AC 37 ms
52,620 KB
testcase_22 AC 37 ms
53,928 KB
testcase_23 AC 37 ms
52,828 KB
testcase_24 AC 96 ms
96,348 KB
testcase_25 AC 44 ms
60,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
TSs =[input().split() for _ in range(N)]

f = []
r = []

for TS in TSs:
    if TS[0] == '0':
        r.append(TS[1])
    else:
        f.append(TS[1])
res = ''.join(reversed(f)) + ''.join(r)
print(res)
0