結果

問題 No.893 お客様を誘導せよ
ユーザー kohei2019kohei2019
提出日時 2022-01-10 12:47:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 88,640 KB
最終ジャッジ日時 2024-11-14 10:46:16
合計ジャッジ時間 2,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,100 KB
testcase_01 AC 43 ms
53,596 KB
testcase_02 AC 65 ms
74,480 KB
testcase_03 AC 93 ms
81,532 KB
testcase_04 AC 95 ms
82,012 KB
testcase_05 AC 90 ms
81,368 KB
testcase_06 AC 80 ms
78,936 KB
testcase_07 AC 41 ms
53,680 KB
testcase_08 AC 113 ms
88,640 KB
testcase_09 AC 65 ms
69,708 KB
testcase_10 AC 42 ms
54,384 KB
testcase_11 AC 60 ms
66,340 KB
testcase_12 AC 70 ms
71,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
ls = []
for i in range(N):
    a = list(map(int,input().split()))
    if len(a) == 1:
        ls.append(collections.deque())
    else:
        ls.append(collections.deque(a[1:]))
ans = []
while ls:
    ll = []
    for q in ls:
        if not q:
            continue
        ans.append(q.popleft())
        ll.append(q)
    ls = ll
print(*ans)
0