結果

問題 No.231 めぐるはめぐる (1)
ユーザー lloyzlloyz
提出日時 2023-04-01 00:04:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 337 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 65,144 KB
最終ジャッジ日時 2024-09-23 03:01:02
合計ジャッジ時間 1,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
65,144 KB
testcase_01 AC 39 ms
52,628 KB
testcase_02 AC 38 ms
54,024 KB
testcase_03 AC 50 ms
62,584 KB
testcase_04 AC 55 ms
64,184 KB
testcase_05 AC 43 ms
55,356 KB
testcase_06 AC 49 ms
61,268 KB
testcase_07 AC 41 ms
53,768 KB
testcase_08 AC 43 ms
54,548 KB
testcase_09 AC 38 ms
52,864 KB
testcase_10 AC 37 ms
52,872 KB
testcase_11 AC 38 ms
52,380 KB
testcase_12 AC 48 ms
59,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = [list(map(int, input().split())) for _ in range(n)]
max_i = -1
max_t = -10**18
for i in range(n):
    g, d = L[i]
    res = g - 30000 * d
    if res > max_t:
        max_t = res
        max_i = i + 1

th = 3000000
if max_t * 6 < th:
    print("NO")
else:
    print("YES")
    for _ in range(6):
        print(max_i)
0