結果
問題 | No.893 お客様を誘導せよ |
ユーザー | motor_radial |
提出日時 | 2020-03-10 23:48:55 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 191 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 14,976 KB |
最終ジャッジ日時 | 2024-11-15 23:51:24 |
合計ジャッジ時間 | 1,720 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,624 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 31 ms
10,496 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
N=int(input()) P=[list(map(int,input().split())) for _ in range(N)] ans=[] for i in range(N): for j in range(P[i][0]): ans.append((P[j][i+1])) print(" ".join(str(i) for i in ans))