結果

問題 No.893 お客様を誘導せよ
ユーザー mlihua09mlihua09
提出日時 2020-09-01 13:36:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-11-18 20:03:44
合計ジャッジ時間 2,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 58 ms
70,016 KB
testcase_03 AC 82 ms
81,240 KB
testcase_04 AC 76 ms
81,152 KB
testcase_05 AC 75 ms
80,392 KB
testcase_06 AC 68 ms
78,636 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 95 ms
87,168 KB
testcase_09 AC 56 ms
66,176 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 51 ms
63,360 KB
testcase_12 AC 65 ms
68,736 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