結果
| 問題 | No.1026 OGAWA's New Keyboard |
| ユーザー |
liny_tail
|
| 提出日時 | 2024-08-16 14:57:12 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 801 ms / 1,000 ms |
| + 284µs | |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 306 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-25 01:49:22 |
| 合計ジャッジ時間 | 6,038 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 21 |
ソースコード
N = int(input())
lst = []
ans = ''
for i in range(N):
T,S = input().split(' ')
if T == '0':
ans += S
else:
ans = S + ans
print(ans)
liny_tail