結果

問題 No.893 お客様を誘導せよ
ユーザー ttrttr
提出日時 2020-02-04 20:24:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-09-21 07:41:36
合計ジャッジ時間 1,928 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 42 ms
11,904 KB
testcase_03 AC 81 ms
15,616 KB
testcase_04 AC 81 ms
15,616 KB
testcase_05 AC 80 ms
15,104 KB
testcase_06 AC 59 ms
13,696 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 131 ms
20,992 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 48 ms
10,624 KB
testcase_12 AC 46 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = [[int(l) for l in input().split()] for _ in range(N)]

ans = []
p = 0
for i in range(N):
    p = max(p, L[i][0])
    L[i].pop(0)

for _ in range(p):
    for j in range(N):
        if len(L[j]) == 0:
            continue
        ans.append(str(L[j][0]))
        L[j].pop(0)

print(" ".join(ans))
0