結果

問題 No.893 お客様を誘導せよ
ユーザー buriburiburiburi
提出日時 2019-10-17 12:30:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-06-24 07:33:53
合計ジャッジ時間 3,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 60 ms
11,648 KB
testcase_03 AC 282 ms
14,336 KB
testcase_04 AC 289 ms
14,464 KB
testcase_05 AC 245 ms
13,952 KB
testcase_06 AC 142 ms
13,056 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 378 ms
17,664 KB
testcase_09 AC 257 ms
11,648 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 258 ms
11,392 KB
testcase_12 AC 262 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
registers = []
n = int(input())
for x in range(n):
    registers.append(deque([int(k) for k in input().split()[1:]]))

isEmpty = False

line = []
while registers:
    for re in registers:
        indices = []
        if not re:
            indices.append(registers.index(re))
            continue
        else:
            line.append(re.popleft())
    for i in indices:
        registers.pop(i)

print(*line)
0