結果

問題 No.231 めぐるはめぐる (1)
ユーザー kohei2019kohei2019
提出日時 2022-01-05 21:29:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 340 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 62,272 KB
最終ジャッジ日時 2024-11-06 08:45:01
合計ジャッジ時間 1,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
62,024 KB
testcase_01 AC 40 ms
52,708 KB
testcase_02 AC 39 ms
52,460 KB
testcase_03 AC 46 ms
55,844 KB
testcase_04 AC 52 ms
62,272 KB
testcase_05 AC 43 ms
54,016 KB
testcase_06 AC 46 ms
55,588 KB
testcase_07 AC 43 ms
53,360 KB
testcase_08 AC 42 ms
53,652 KB
testcase_09 AC 37 ms
52,408 KB
testcase_10 AC 38 ms
52,212 KB
testcase_11 AC 38 ms
52,732 KB
testcase_12 AC 44 ms
55,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
need = 3000000//6
lsGD = []
for i in range(N):
    G,D = map(int,input().split())
    gets = G-30000*D
    lsGD.append(gets)
maxG = max(lsGD)
indmax = 0
for i in range(N):
    if lsGD[i] == maxG:
        indmax = i
        break
if need > maxG:
    print('NO')
    exit()
print('YES')
for i in range(6):
    print(indmax+1)
0