結果

問題 No.893 お客様を誘導せよ
ユーザー mlihua09mlihua09
提出日時 2020-09-01 13:36:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 87,296 KB
最終ジャッジ日時 2024-04-29 15:25:14
合計ジャッジ時間 2,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 58 ms
69,632 KB
testcase_03 AC 90 ms
80,896 KB
testcase_04 AC 81 ms
80,768 KB
testcase_05 AC 86 ms
80,512 KB
testcase_06 AC 69 ms
79,076 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 101 ms
87,296 KB
testcase_09 AC 60 ms
66,048 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 52 ms
63,232 KB
testcase_12 AC 67 ms
68,864 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