結果

問題 No.231 めぐるはめぐる (1)
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 17:06:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 1,000 ms
コード長 466 bytes
コンパイル時間 3,224 ms
コンパイル使用メモリ 74,964 KB
実行使用メモリ 43,452 KB
最終ジャッジ日時 2024-11-15 19:03:18
合計ジャッジ時間 6,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
43,452 KB
testcase_01 AC 154 ms
41,844 KB
testcase_02 AC 142 ms
41,456 KB
testcase_03 AC 189 ms
42,628 KB
testcase_04 AC 194 ms
43,276 KB
testcase_05 AC 186 ms
42,076 KB
testcase_06 AC 189 ms
43,228 KB
testcase_07 AC 167 ms
41,832 KB
testcase_08 AC 180 ms
42,360 KB
testcase_09 AC 125 ms
41,292 KB
testcase_10 AC 127 ms
41,712 KB
testcase_11 AC 125 ms
41,200 KB
testcase_12 AC 183 ms
42,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int req = 3000000, n = sc.nextInt(), max = 0, g, d;
		for(int i = 1; i <= n; i++){
			g = sc.nextInt();
			d = sc.nextInt();
			if((g-30000*d)*6 >= req){
				max = i;
			}
		}
		if(max == 0){
			System.out.println("NO");
		} else {
			System.out.println("YES");
			for(int i = 0; i < 6; i++){
				System.out.println(max);
			}
		}
	}
}
0