結果

問題 No.231 めぐるはめぐる (1)
ユーザー yaoshimaxyaoshimax
提出日時 2015-06-27 20:32:40
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 68 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-07 20:02:48
合計ジャッジ時間 1,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 10 ms
6,940 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 10 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
L=[]
for i in range(N):
    G,D=map(int,raw_input().split())
    L.append((G-D*30000,i+1))
L.sort()
L.reverse()
if( L[0][0]*6 < 3000000 ):
    print "NO"
else:
    print "YES"
    ind=0
    cur=0
    num=0
    while num<6:
        if cur+L[ind][0]+L[0][0]*(5-ind) >= 3000000:
            print L[ind][1]
            cur+=L[ind][0]
            ind+=1
            num+=1
        else:
            ind=0
        ind%=N


0