結果

問題 No.893 お客様を誘導せよ
ユーザー stngstng
提出日時 2022-08-07 12:17:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 1,356 ms
コンパイル使用メモリ 81,184 KB
実行使用メモリ 86,100 KB
最終ジャッジ日時 2023-10-17 07:51:09
合計ジャッジ時間 3,214 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,188 KB
testcase_01 AC 37 ms
53,188 KB
testcase_02 AC 62 ms
70,340 KB
testcase_03 AC 83 ms
80,352 KB
testcase_04 AC 81 ms
80,328 KB
testcase_05 AC 78 ms
79,572 KB
testcase_06 AC 72 ms
77,924 KB
testcase_07 AC 37 ms
53,248 KB
testcase_08 AC 93 ms
86,100 KB
testcase_09 AC 60 ms
65,932 KB
testcase_10 AC 38 ms
53,248 KB
testcase_11 AC 56 ms
63,652 KB
testcase_12 AC 65 ms
68,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
pa = [[int(i) for i in input().split()] for j in range(n)]

ans = []
for i in range(10**2):
    for j in range(n):
        if pa[j][0] >= i+1:
            ans.append(pa[j][i+1])

print(*ans)
0