結果
問題 |
No.1026 OGAWA's New Keyboard
|
ユーザー |
|
提出日時 | 2020-06-22 14:53:13 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 162 bytes |
コンパイル時間 | 116 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 11,532 KB |
最終ジャッジ日時 | 2024-07-03 18:40:45 |
合計ジャッジ時間 | 4,565 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 TLE * 1 |
other | AC * 21 |
ソースコード
N = int(input()) string = "" for _ in range(N): T,S = input().split() if T == "0": string += S else: string = S + string print(string)