結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 57 ms
69,376 KB
testcase_03 AC 82 ms
80,652 KB
testcase_04 AC 81 ms
80,768 KB
testcase_05 AC 77 ms
80,128 KB
testcase_06 AC 74 ms
78,336 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 92 ms
86,616 KB
testcase_09 AC 57 ms
65,280 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 54 ms
62,592 KB
testcase_12 AC 63 ms
68,608 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