結果
| 問題 | No.1026 OGAWA's New Keyboard |
| ユーザー |
双六
|
| 提出日時 | 2020-08-05 16:12:35 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 295 ms / 1,000 ms |
| コード長 | 449 bytes |
| 記録 | |
| コンパイル時間 | 349 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,356 KB |
| 最終ジャッジ日時 | 2026-04-06 03:03:58 |
| 合計ジャッジ時間 | 4,105 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 21 |
ソースコード
# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
def getlist():
return list(map(int, input().split()))
#処理内容
def main():
N = int(input())
head = ""
tail = ""
for i in range(N):
t, s = list(input().split())
if t == "0":
tail += s
else:
head += s
ans = head[::-1] + tail
print(ans)
if __name__ == '__main__':
main()
双六