結果

問題 No.893 お客様を誘導せよ
ユーザー ThetaTheta
提出日時 2022-11-01 18:57:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-07-16 09:10:56
合計ジャッジ時間 2,099 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 39 ms
11,776 KB
testcase_03 AC 71 ms
14,336 KB
testcase_04 AC 74 ms
14,464 KB
testcase_05 AC 69 ms
14,080 KB
testcase_06 AC 59 ms
13,056 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 123 ms
18,048 KB
testcase_09 AC 31 ms
11,520 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 31 ms
11,520 KB
testcase_12 AC 31 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def main():
    N = int(input())
    consumers = []
    for _ in range(N):
        _, *p = map(int, input().split())
        consumers.append(deque(p))
    new_waited = []

    while consumers:
        for consumer in consumers:
            try:
                new_waited.append(consumer.popleft())
            except IndexError:
                pass
        consumers = list(filter(lambda elm: len(elm) > 0, consumers))

    print(*new_waited)


if __name__ == "__main__":
    main()
0