結果

問題 No.231 めぐるはめぐる (1)
ユーザー gorugo30gorugo30
提出日時 2021-02-23 20:37:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 294 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 65,584 KB
最終ジャッジ日時 2024-09-22 14:58:53
合計ジャッジ時間 1,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
65,584 KB
testcase_01 AC 40 ms
54,112 KB
testcase_02 AC 39 ms
52,932 KB
testcase_03 AC 51 ms
61,404 KB
testcase_04 AC 54 ms
63,972 KB
testcase_05 AC 45 ms
56,160 KB
testcase_06 AC 50 ms
61,452 KB
testcase_07 AC 40 ms
54,444 KB
testcase_08 AC 43 ms
54,972 KB
testcase_09 AC 38 ms
52,136 KB
testcase_10 AC 37 ms
52,504 KB
testcase_11 AC 37 ms
53,508 KB
testcase_12 AC 47 ms
60,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
need = 30000 * 100
GD = [list(map(int, input().split())) + [i] for i in range(N)]
GD.sort(key = lambda x: x[0] - 30000 * x[1], reverse = True)
if 6 * GD[0][0] - 180000 * GD[0][1] >= need:
    print("YES")
    for i in range(6):
        print(GD[0][2] + 1)
else:
    print("NO")
0