結果

問題 No.231 めぐるはめぐる (1)
ユーザー yuki2006yuki2006
提出日時 2015-06-26 02:55:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 1,000 ms
コード長 800 bytes
コンパイル時間 4,243 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 43,164 KB
最終ジャッジ日時 2024-11-07 23:29:33
合計ジャッジ時間 7,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
43,164 KB
testcase_01 AC 152 ms
41,608 KB
testcase_02 AC 144 ms
41,456 KB
testcase_03 AC 193 ms
42,440 KB
testcase_04 AC 197 ms
43,088 KB
testcase_05 AC 170 ms
42,228 KB
testcase_06 AC 191 ms
42,828 KB
testcase_07 AC 163 ms
41,740 KB
testcase_08 AC 171 ms
42,124 KB
testcase_09 AC 129 ms
41,216 KB
testcase_10 AC 119 ms
40,500 KB
testcase_11 AC 124 ms
41,148 KB
testcase_12 AC 188 ms
42,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder231 {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        int[] gain = new int[N];
        int maxIndex = 0;
        int max = 0;
        for (int i = 0; i < N; i++) {
            int G = scanner.nextInt();
            int D = scanner.nextInt();
            gain[i] = G - 30000 * D;
            if (max < gain[i]) {
                max = gain[i];
                maxIndex = i;
            }
        }
        if (3000000 > gain[maxIndex] * 6) {
            System.out.println("NO");
        } else {
            System.out.println("YES");
            for (int i = 0; i < 6; i++) {
                System.out.println(maxIndex + 1);
            }
        }


    }
}
0