結果

問題 No.231 めぐるはめぐる (1)
ユーザー convexineqconvexineq
提出日時 2021-01-31 17:29:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 1,000 ms
コード長 201 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 86,940 KB
実行使用メモリ 75,640 KB
最終ジャッジ日時 2023-09-11 11:27:43
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
75,640 KB
testcase_01 AC 80 ms
71,168 KB
testcase_02 AC 77 ms
71,288 KB
testcase_03 AC 76 ms
71,260 KB
testcase_04 AC 76 ms
71,644 KB
testcase_05 AC 82 ms
71,352 KB
testcase_06 AC 76 ms
71,428 KB
testcase_07 AC 76 ms
71,572 KB
testcase_08 AC 76 ms
71,132 KB
testcase_09 AC 72 ms
71,168 KB
testcase_10 AC 75 ms
71,364 KB
testcase_11 AC 76 ms
71,172 KB
testcase_12 AC 76 ms
71,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(n):
    g,d = map(int,input().split())
    if 6*(g-30000*d) >= 3000000:
        print("YES")
        for j in range(6):
            print(i+1)
        exit()
print("NO")
0