結果

問題 No.231 めぐるはめぐる (1)
ユーザー syunsukesyunsuke
提出日時 2020-11-07 21:20:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 201 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 61,756 KB
最終ジャッジ日時 2024-07-22 14:49:49
合計ジャッジ時間 1,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,756 KB
testcase_01 AC 38 ms
52,616 KB
testcase_02 AC 36 ms
53,892 KB
testcase_03 AC 35 ms
52,672 KB
testcase_04 AC 34 ms
53,508 KB
testcase_05 AC 44 ms
54,580 KB
testcase_06 AC 33 ms
53,132 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 AC 41 ms
52,272 KB
testcase_09 AC 37 ms
51,816 KB
testcase_10 AC 35 ms
52,696 KB
testcase_11 AC 32 ms
53,024 KB
testcase_12 AC 34 ms
52,880 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