結果
問題 | No.893 お客様を誘導せよ |
ユーザー | ssmkzk |
提出日時 | 2020-02-10 14:45:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 23,724 KB |
最終ジャッジ日時 | 2024-10-01 06:23:29 |
合計ジャッジ時間 | 9,984 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
16,000 KB |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 70 ms
11,904 KB |
testcase_03 | AC | 1,775 ms
15,068 KB |
testcase_04 | AC | 1,769 ms
15,172 KB |
testcase_05 | AC | 1,564 ms
14,668 KB |
testcase_06 | AC | 500 ms
13,368 KB |
testcase_07 | AC | 27 ms
10,624 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
N = int(input()) max_n = 0 ans_l = [] for i in range(N): l = list(map(int, input().split())) max_n = max(max_n, l[0]) ans_l.append(l[1:]) for i in range(N): if max_n - len(ans_l[i]) >= 1: ans_l[i] = ans_l[i] + [0 for i in range(max_n - len(ans_l[i]))] # print(ans_l) l_T = list(zip(*ans_l)) # print(l_T) ans = "" for i in range(max_n): for j in range(N): if l_T[i][j] == 0: continue else: ans = ans + str(l_T[i][j]) + " " print(ans)