結果

問題 No.231 めぐるはめぐる (1)
ユーザー YamaKasaYamaKasa
提出日時 2018-05-18 16:55:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 196 ms / 1,000 ms
コード長 629 bytes
コンパイル時間 2,028 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 56,772 KB
最終ジャッジ日時 2024-06-28 13:45:19
合計ジャッジ時間 5,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
56,772 KB
testcase_01 AC 166 ms
54,236 KB
testcase_02 AC 147 ms
53,964 KB
testcase_03 AC 190 ms
54,440 KB
testcase_04 AC 196 ms
56,724 KB
testcase_05 AC 174 ms
54,496 KB
testcase_06 AC 193 ms
54,412 KB
testcase_07 AC 161 ms
54,416 KB
testcase_08 AC 181 ms
54,408 KB
testcase_09 AC 130 ms
53,924 KB
testcase_10 AC 131 ms
54,024 KB
testcase_11 AC 129 ms
53,860 KB
testcase_12 AC 185 ms
54,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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