結果

問題 No.893 お客様を誘導せよ
ユーザー convexineqconvexineq
提出日時 2021-04-03 14:57:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 913 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,936 KB
最終ジャッジ日時 2024-06-07 01:03:27
合計ジャッジ時間 2,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,248 KB
testcase_01 AC 47 ms
53,376 KB
testcase_02 AC 77 ms
72,064 KB
testcase_03 AC 102 ms
80,128 KB
testcase_04 AC 103 ms
80,384 KB
testcase_05 AC 99 ms
80,000 KB
testcase_06 AC 93 ms
78,592 KB
testcase_07 AC 47 ms
53,376 KB
testcase_08 AC 121 ms
87,936 KB
testcase_09 AC 71 ms
66,688 KB
testcase_10 AC 47 ms
52,992 KB
testcase_11 AC 70 ms
65,280 KB
testcase_12 AC 79 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n = int(input())
q = deque()
for _ in range(n):
    p, *a = map(int,input().split())
    q.append(a[::-1])
ans = []
while q:
    v = q.popleft()
    if v:
        ans.append(v.pop())
        if v: q.append(v)
print(*ans)
0