結果
| 問題 | No.1026 OGAWA's New Keyboard |
| ユーザー |
r_ishida
|
| 提出日時 | 2026-02-12 06:26:53 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 115 ms / 1,000 ms |
| + 671µs | |
| コード長 | 484 bytes |
| 記録 | |
| コンパイル時間 | 417 ms |
| コンパイル使用メモリ | 96,360 KB |
| 実行使用メモリ | 97,560 KB |
| 最終ジャッジ日時 | 2026-07-21 07:08:43 |
| 合計ジャッジ時間 | 3,898 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 21 |
ソースコード
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)
r_ishida