結果
| 問題 |
No.1026 OGAWA's New Keyboard
|
| ユーザー |
|
| 提出日時 | 2021-08-15 13:06:09 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 113 bytes |
| コンパイル時間 | 159 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 11,648 KB |
| 最終ジャッジ日時 | 2024-10-07 06:16:52 |
| 合計ジャッジ時間 | 5,093 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 TLE * 1 |
| other | AC * 21 |
ソースコード
N=int(input())
ans=""
for i in range(N):
T,S=input().split()
ans = ans+S if T=="0" else S+ans
print(ans)