結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
17,920 KB
testcase_01 AC 127 ms
17,920 KB
testcase_02 AC 136 ms
18,432 KB
testcase_03 AC 173 ms
19,840 KB
testcase_04 AC 171 ms
19,840 KB
testcase_05 AC 166 ms
19,712 KB
testcase_06 AC 159 ms
19,072 KB
testcase_07 AC 126 ms
17,792 KB
testcase_08 AC 229 ms
22,016 KB
testcase_09 AC 130 ms
17,920 KB
testcase_10 AC 127 ms
17,920 KB
testcase_11 AC 129 ms
17,920 KB
testcase_12 AC 129 ms
17,920 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