結果

問題 No.893 お客様を誘導せよ
ユーザー ohara_nohara_n
提出日時 2020-03-20 20:49:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-05-08 16:51:27
合計ジャッジ時間 2,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,880 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 49 ms
11,648 KB
testcase_03 AC 98 ms
13,824 KB
testcase_04 AC 98 ms
13,952 KB
testcase_05 AC 89 ms
13,824 KB
testcase_06 AC 72 ms
12,800 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 AC 159 ms
17,280 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 42 ms
10,752 KB
testcase_12 AC 43 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
Lines = []
length = 0
for _ in range(n):
    line = list(map(int,input().split()))
    Lines.append(line)
    length += len(line)-1

order = []
while len(order) < length:
    for line in Lines:
        if line[0] > 0:
            order.append(line[1])
            line[0] -= 1
            line.pop(1)
print(*order)
0