結果

問題 No.231 めぐるはめぐる (1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 08:32:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 1,000 ms
コード長 774 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 75,188 KB
実行使用メモリ 44,116 KB
最終ジャッジ日時 2024-11-25 21:53:30
合計ジャッジ時間 5,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
44,116 KB
testcase_01 AC 151 ms
41,664 KB
testcase_02 AC 136 ms
41,328 KB
testcase_03 AC 183 ms
42,792 KB
testcase_04 AC 186 ms
43,528 KB
testcase_05 AC 178 ms
42,588 KB
testcase_06 AC 176 ms
42,620 KB
testcase_07 AC 149 ms
41,872 KB
testcase_08 AC 169 ms
42,364 KB
testcase_09 AC 119 ms
41,168 KB
testcase_10 AC 122 ms
41,596 KB
testcase_11 AC 110 ms
40,144 KB
testcase_12 AC 182 ms
42,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] M = new int [N];
        int max = 0;
        
        for(int i=0; i<N; i++){
            int G = sc.nextInt();
            int D = sc.nextInt();
            M[i] = G-D*30000;
            max=Math.max(max,M[i]);
        }
        if(max*6>=30000*100){
            System.out.println("YES");
            int a=0;
            for(int i=0; i<N; i++){
                if(max==M[i]){
                    a=i+1;
                }
            }
            for(int i=0; i<6; i++){
                System.out.println(a);
            }
        }else{
            System.out.println("NO");
        }
    }
}
0