結果
| 問題 | No.1026 OGAWA's New Keyboard |
| ユーザー |
takakin
|
| 提出日時 | 2020-06-11 22:35:02 |
| 言語 | Python3 (3.14.2 + numpy 2.4.0 + scipy 1.16.3) |
| 結果 |
AC
|
| 実行時間 | 159 ms / 1,000 ms |
| コード長 | 238 bytes |
| 記録 | |
| コンパイル時間 | 139 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 13,952 KB |
| 最終ジャッジ日時 | 2024-06-24 03:25:55 |
| 合計ジャッジ時間 | 2,204 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 21 |
ソースコード
import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
import collections
D=collections.deque()
f1=D.append
f2=D.appendleft
for _ in range(n):
t,s=input().split()
if t=="0":
f1(s)
else:
f2(s)
print("".join(D))
takakin