結果

問題 No.893 お客様を誘導せよ
ユーザー futago0118futago0118
提出日時 2020-07-20 00:04:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,112 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-05-10 00:18:18
合計ジャッジ時間 7,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 117 ms
11,648 KB
testcase_03 AC 893 ms
14,592 KB
testcase_04 AC 872 ms
14,336 KB
testcase_05 AC 721 ms
14,336 KB
testcase_06 AC 391 ms
13,312 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 1,112 ms
18,304 KB
testcase_09 AC 45 ms
11,520 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 966 ms
11,648 KB
testcase_12 AC 953 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
T = deque()

b = deque()
for i in range(n):
    m = input().split()
    a = deque()
    b.append(int(m[0]))
    if m[0] != 0:
        for j in range(1,int(m[0])+1):
            a.append(int(m[j]))
    else:
        a.append("0")
    
    T.append(a)

#print(T)
#print(sum(b))

k = 0
ans = []
while sum(b) != 0:
    if b[k%n] != 0:
        ans.append(T[k%n].popleft())
        b[k%n] -= 1
    k += 1

print(*ans)    
0