結果

問題 No.893 お客様を誘導せよ
ユーザー mlihua09mlihua09
提出日時 2020-09-01 13:36:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 87,156 KB
実行使用メモリ 88,104 KB
最終ジャッジ日時 2023-08-12 00:13:17
合計ジャッジ時間 3,244 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,608 KB
testcase_01 AC 74 ms
71,340 KB
testcase_02 AC 93 ms
76,984 KB
testcase_03 AC 111 ms
80,872 KB
testcase_04 AC 110 ms
80,516 KB
testcase_05 AC 109 ms
80,776 KB
testcase_06 AC 101 ms
80,168 KB
testcase_07 AC 69 ms
71,356 KB
testcase_08 AC 125 ms
88,104 KB
testcase_09 AC 93 ms
76,584 KB
testcase_10 AC 72 ms
71,528 KB
testcase_11 AC 87 ms
76,348 KB
testcase_12 AC 95 ms
77,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

P = [list(map(int, input().split())) for i in range(N)]
ans = []
l = [len(p) for p in P]
for i in range(1, 101):
    for j in range(N):
        if l[j] > i:
            ans += [P[j][i]]
            
print(*ans)
0