結果

問題 No.893 お客様を誘導せよ
ユーザー neterukunneterukun
提出日時 2019-09-27 21:32:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,808 KB
実行使用メモリ 86,684 KB
最終ジャッジ日時 2023-10-25 01:54:48
合計ジャッジ時間 1,768 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,480 KB
testcase_01 AC 36 ms
53,480 KB
testcase_02 AC 57 ms
70,688 KB
testcase_03 AC 83 ms
80,500 KB
testcase_04 AC 82 ms
80,496 KB
testcase_05 AC 81 ms
80,092 KB
testcase_06 AC 73 ms
78,284 KB
testcase_07 AC 37 ms
53,480 KB
testcase_08 AC 96 ms
86,684 KB
testcase_09 AC 58 ms
65,824 KB
testcase_10 AC 37 ms
53,480 KB
testcase_11 AC 55 ms
64,164 KB
testcase_12 AC 65 ms
68,648 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