結果
| 問題 | 
                            No.1026 OGAWA's New Keyboard
                             | 
                    
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-03-19 23:45:25 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 166 bytes | 
| コンパイル時間 | 427 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 17,024 KB | 
| 最終ジャッジ日時 | 2024-10-01 17:02:30 | 
| 合計ジャッジ時間 | 3,497 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 TLE * 1 | 
| other | -- * 21 | 
ソースコード
n = int(input())
ls=[]
for i in range(n):
    head, s = input().split()
    if head == "0":
        ls.append(s)
    else:
        ls.insert(0,s)
print("".join(ls))