結果

問題 No.893 お客様を誘導せよ
ユーザー neterukunneterukun
提出日時 2019-09-27 21:32:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 86,764 KB
最終ジャッジ日時 2024-09-24 20:52:00
合計ジャッジ時間 1,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,744 KB
testcase_01 AC 37 ms
52,700 KB
testcase_02 AC 59 ms
70,456 KB
testcase_03 AC 84 ms
80,736 KB
testcase_04 AC 83 ms
80,628 KB
testcase_05 AC 81 ms
80,696 KB
testcase_06 AC 73 ms
78,524 KB
testcase_07 AC 36 ms
53,224 KB
testcase_08 AC 96 ms
86,764 KB
testcase_09 AC 58 ms
65,800 KB
testcase_10 AC 36 ms
52,476 KB
testcase_11 AC 56 ms
64,524 KB
testcase_12 AC 65 ms
69,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
info = [list(map(int, input().split())) for i in range(n)]

max_len = 0
for i in range(n):
    max_len = max(info[i][0], max_len)

ans = []
for j in range(max_len):
    for i in range(n):
        if j+1 < len(info[i]):
            ans.append(info[i][j+1])
print(*ans)
0