結果

問題 No.231 めぐるはめぐる (1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 08:32:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 204 ms / 1,000 ms
コード長 774 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 43,780 KB
最終ジャッジ日時 2024-05-04 11:22:26
合計ジャッジ時間 5,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
43,780 KB
testcase_01 AC 162 ms
41,532 KB
testcase_02 AC 146 ms
41,712 KB
testcase_03 AC 191 ms
42,716 KB
testcase_04 AC 196 ms
43,112 KB
testcase_05 AC 189 ms
42,584 KB
testcase_06 AC 197 ms
42,532 KB
testcase_07 AC 169 ms
41,644 KB
testcase_08 AC 184 ms
42,084 KB
testcase_09 AC 136 ms
41,072 KB
testcase_10 AC 135 ms
41,464 KB
testcase_11 AC 130 ms
41,388 KB
testcase_12 AC 190 ms
43,000 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