結果

問題 No.231 めぐるはめぐる (1)
ユーザー ABKZABKZ
提出日時 2023-01-21 15:22:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 247 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 62,252 KB
最終ジャッジ日時 2024-06-23 23:15:42
合計ジャッジ時間 1,685 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,252 KB
testcase_01 AC 41 ms
53,528 KB
testcase_02 AC 40 ms
52,552 KB
testcase_03 AC 46 ms
55,764 KB
testcase_04 AC 51 ms
61,964 KB
testcase_05 AC 44 ms
55,960 KB
testcase_06 AC 46 ms
55,944 KB
testcase_07 AC 41 ms
53,320 KB
testcase_08 AC 43 ms
54,692 KB
testcase_09 AC 38 ms
52,900 KB
testcase_10 AC 39 ms
52,072 KB
testcase_11 AC 39 ms
52,476 KB
testcase_12 AC 46 ms
55,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
p = [g - 30000*d for g, d in [map(int, input().split()) for _ in range(N)]]

for i, x in enumerate(p):
    if x >= 500000:
        print("YES")
        for _ in range(6):
            print(i+1)
        break
else:
    print("NO")
0