結果

問題 No.231 めぐるはめぐる (1)
ユーザー mlihua09mlihua09
提出日時 2020-08-28 14:42:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-11-09 01:15:37
合計ジャッジ時間 2,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
61,056 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 48 ms
54,784 KB
testcase_04 AC 52 ms
60,544 KB
testcase_05 WA -
testcase_06 AC 47 ms
54,528 KB
testcase_07 AC 41 ms
52,608 KB
testcase_08 AC 44 ms
53,888 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 40 ms
51,456 KB
testcase_11 AC 38 ms
51,584 KB
testcase_12 AC 45 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

g = 0

x = 0

for i in range(N):
    
    G, D = map(int, input().split())
    
    if G - 30000 * D > g:
        
        g = G - 30000 * D
        
        x = i + 1

if g * 6 >= 300000:
    
    print('YES')
    
    print(x, x, x, x, x, x, sep='\n')
    
else:
    
    print('NO')
0