結果
問題 | No.893 お客様を誘導せよ |
ユーザー | ssmkzk |
提出日時 | 2020-02-10 14:58:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 674 bytes |
コンパイル時間 | 126 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,284 KB |
最終ジャッジ日時 | 2024-10-01 06:23:40 |
合計ジャッジ時間 | 9,270 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
16,000 KB |
testcase_01 | AC | 32 ms
10,624 KB |
testcase_02 | AC | 73 ms
11,520 KB |
testcase_03 | AC | 1,767 ms
14,568 KB |
testcase_04 | AC | 1,726 ms
14,300 KB |
testcase_05 | AC | 1,378 ms
13,992 KB |
testcase_06 | AC | 503 ms
12,760 KB |
testcase_07 | AC | 26 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]) + " " for i in range(max_n): for j in range(N): if ans_l[j][i] == 0: continue else: ans = ans + str(ans_l[j][i]) + " " print(ans)