結果

問題 No.893 お客様を誘導せよ
ユーザー RK PythonRK Python
提出日時 2020-06-22 15:07:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 10,616 KB
実行使用メモリ 20,752 KB
最終ジャッジ日時 2023-09-16 19:13:04
合計ジャッジ時間 1,806 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,900 KB
testcase_01 AC 16 ms
7,760 KB
testcase_02 AC 39 ms
9,612 KB
testcase_03 AC 104 ms
13,972 KB
testcase_04 AC 96 ms
13,844 KB
testcase_05 AC 86 ms
13,676 KB
testcase_06 AC 65 ms
11,828 KB
testcase_07 AC 15 ms
7,828 KB
testcase_08 AC 91 ms
20,752 KB
testcase_09 AC 19 ms
8,340 KB
testcase_10 AC 15 ms
7,956 KB
testcase_11 AC 112 ms
7,852 KB
testcase_12 AC 111 ms
8,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
c = []
m = 0
for _ in range(N):
    line = [int(i) for i in input().split()]
    c.append(line[1:])
    m = max(line[0], m)
ans = []
for i in range(m):
    for j in range(N):
        try:
            ans.append(c[j][i])
        except:
            continue
print(" ".join(map(str, ans)))
0