結果

問題 No.231 めぐるはめぐる (1)
ユーザー ぴろずぴろず
提出日時 2015-06-26 22:24:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 1,000 ms
コード長 555 bytes
コンパイル時間 3,418 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 43,372 KB
最終ジャッジ日時 2024-11-07 23:29:40
合計ジャッジ時間 5,230 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
43,372 KB
testcase_01 AC 159 ms
41,668 KB
testcase_02 AC 137 ms
41,244 KB
testcase_03 AC 191 ms
42,584 KB
testcase_04 AC 196 ms
43,116 KB
testcase_05 AC 185 ms
42,140 KB
testcase_06 AC 193 ms
42,820 KB
testcase_07 AC 158 ms
41,368 KB
testcase_08 AC 181 ms
42,048 KB
testcase_09 AC 121 ms
40,072 KB
testcase_10 AC 127 ms
40,956 KB
testcase_11 AC 130 ms
41,260 KB
testcase_12 AC 188 ms
42,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no231;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int max = Integer.MIN_VALUE;
		int maxi = -1;
		for(int i=0;i<n;i++) {
			int g = sc.nextInt();
			int d = sc.nextInt();
			int exp = (g - 30000 * d) * 6;
			if (max < exp) {
				max = exp;
				maxi = i;
			}
		}
		if (max >= 30000 * 100) {
			System.out.println("YES");
			for(int i=0;i<6;i++) {
				System.out.println(maxi + 1);
			}
		}else{
			System.out.println("NO");
		}
	}

}
0