結果

問題 No.1026 OGAWA's New Keyboard
ユーザー r_ishida
提出日時 2026-02-12 06:26:53
言語 PyPy3
(7.3.17)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 484 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 372 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 90,660 KB
最終ジャッジ日時 2026-02-12 06:26:57
合計ジャッジ時間 3,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import math
import sys
def S(): return sys.stdin.readline().rstrip()
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int, sys.stdin.readline().rstrip().split())
def LI(): return list(map(int, sys.stdin.readline().rstrip().split()))
def LS(): return list(sys.stdin.readline().rstrip().split())

n = I()
f = []
b = []
for i in range(n):
    x = LS()
    if x[0] == '0':
        b.append(x[1])
    else:
        f.append(x[1])

ans = "".join(f[::-1]+b)
print(ans)
0