結果

問題 No.893 お客様を誘導せよ
ユーザー superzugansuperzugan
提出日時 2021-08-28 23:49:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 328 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-11-22 00:45:53
合計ジャッジ時間 3,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 56 ms
12,288 KB
testcase_03 AC 276 ms
26,240 KB
testcase_04 AC 275 ms
25,984 KB
testcase_05 AC 230 ms
23,056 KB
testcase_06 AC 137 ms
17,280 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 370 ms
31,104 KB
testcase_09 AC 261 ms
26,496 KB
testcase_10 RE -
testcase_11 AC 265 ms
26,368 KB
testcase_12 AC 268 ms
26,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
lst=[[0]*n for _ in range(n)]
max_a=0
for i in range(n):
    a,*b=map(int,input().split())
    for j in range(a):
        lst[i][j]=b[j]
    max_a=max(max_a,a)
ans_lst=[]
for i in range(n):
    for j in range(n):
        ans_lst.append(lst[j][i] if lst[j][i]!=0 else None)
print(*[i for i in ans_lst if i!=None])
0