結果

問題 No.231 めぐるはめぐる (1)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-01 22:54:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 1,000 ms
コード長 829 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 84,340 KB
実行使用メモリ 43,172 KB
最終ジャッジ日時 2024-06-06 11:19:55
合計ジャッジ時間 5,084 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
43,104 KB
testcase_01 AC 140 ms
41,276 KB
testcase_02 AC 138 ms
41,168 KB
testcase_03 AC 173 ms
42,544 KB
testcase_04 AC 180 ms
43,172 KB
testcase_05 AC 174 ms
42,356 KB
testcase_06 AC 163 ms
42,140 KB
testcase_07 AC 150 ms
41,452 KB
testcase_08 AC 167 ms
41,784 KB
testcase_09 AC 105 ms
39,788 KB
testcase_10 AC 126 ms
41,100 KB
testcase_11 AC 118 ms
41,088 KB
testcase_12 AC 175 ms
42,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] g = new int[n];
        int[] d = new int[n];
        int max = 0;
        int stageNum = 0;
        for(int i=0; i<n; i++) {
            g[i] = in.nextInt();
            d[i] = in.nextInt();
            max = Math.max(max, g[i] - d[i] * 30000);
            if(max == g[i] - d[i] * 30000) stageNum = i + 1;
        }

        int u = 30000 * 100;

        if(max * 6 >= u) {
            System.out.println("YES");
            for(int i=0; i<6; i++) System.out.println(stageNum);
        } else {
            System.out.println("NO");
        }

        in.close();
    }
}
0