結果

問題 No.893 お客様を誘導せよ
ユーザー 👑 rin204rin204
提出日時 2020-08-24 22:55:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-11-06 10:51:26
合計ジャッジ時間 2,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
17,920 KB
testcase_01 AC 130 ms
17,920 KB
testcase_02 AC 139 ms
18,432 KB
testcase_03 AC 179 ms
19,840 KB
testcase_04 AC 173 ms
19,840 KB
testcase_05 AC 172 ms
19,712 KB
testcase_06 AC 157 ms
19,072 KB
testcase_07 AC 128 ms
17,920 KB
testcase_08 AC 234 ms
22,016 KB
testcase_09 AC 131 ms
17,920 KB
testcase_10 AC 130 ms
17,920 KB
testcase_11 AC 132 ms
17,920 KB
testcase_12 AC 130 ms
18,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
lst = [[] for _ in range(10 ** 5 + 1)]
for _ in range(n):
    pa = list(map(int, input().split()))
    for i, a in enumerate(pa[1:]):
        lst[i].append(a)
for ll in lst:
    print(*ll, sep = " ", end = " ")
print()
0