結果

問題 No.893 お客様を誘導せよ
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-10-31 08:32:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 373 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,664 KB
最終ジャッジ日時 2024-09-14 22:00:21
合計ジャッジ時間 8,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 58 ms
11,776 KB
testcase_03 AC 1,364 ms
14,404 KB
testcase_04 AC 1,338 ms
14,372 KB
testcase_05 AC 1,096 ms
13,972 KB
testcase_06 AC 421 ms
12,968 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.893 お客様を誘導せよ
n = int(input())
p = []
a = []
queue = []

for i in range(n):
    tmp = input().split()
    p.append(int(tmp[0]))
    a.append(tmp[1:])

while len(queue) < sum(p):
    for i in range(n):
        if len(a[i]) > 0:
            queue.append(a[i][0])
            a[i] = a[i][1:]
        
s = ''

for k in queue:
    s += k + ' '

print(s[:-1])
0