結果

問題 No.231 めぐるはめぐる (1)
ユーザー syunsukesyunsuke
提出日時 2020-11-07 21:20:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 201 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 86,792 KB
実行使用メモリ 75,264 KB
最終ジャッジ日時 2023-09-29 20:53:23
合計ジャッジ時間 2,355 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,264 KB
testcase_01 AC 66 ms
71,212 KB
testcase_02 AC 68 ms
71,384 KB
testcase_03 AC 69 ms
71,180 KB
testcase_04 AC 70 ms
70,924 KB
testcase_05 AC 71 ms
71,004 KB
testcase_06 AC 66 ms
71,220 KB
testcase_07 AC 69 ms
71,232 KB
testcase_08 AC 66 ms
71,068 KB
testcase_09 AC 64 ms
71,000 KB
testcase_10 AC 65 ms
71,404 KB
testcase_11 AC 64 ms
71,248 KB
testcase_12 AC 64 ms
71,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for i in range(N):
    E,D=map(int,input().split())
    if 5*(10**5)<=(E - D*3*(10**4)):
        print("YES")
        for j in range(6):
            print(i+1)
        exit()
print("NO")
0