結果

問題 No.231 めぐるはめぐる (1)
ユーザー 練習生練習生
提出日時 2015-08-07 16:27:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 1,000 ms
コード長 506 bytes
コンパイル時間 3,423 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 43,468 KB
最終ジャッジ日時 2024-11-07 23:44:06
合計ジャッジ時間 6,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
43,172 KB
testcase_01 AC 168 ms
41,652 KB
testcase_02 AC 144 ms
41,444 KB
testcase_03 AC 197 ms
43,172 KB
testcase_04 AC 195 ms
43,468 KB
testcase_05 AC 182 ms
42,152 KB
testcase_06 AC 194 ms
42,796 KB
testcase_07 AC 160 ms
41,760 KB
testcase_08 AC 191 ms
42,024 KB
testcase_09 AC 133 ms
41,364 KB
testcase_10 AC 132 ms
41,268 KB
testcase_11 AC 132 ms
41,448 KB
testcase_12 AC 180 ms
42,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No231 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int clear = 0;
		for(int i = 0; i < n; i++){
			int g = sc.nextInt();
			int d = sc.nextInt();
			if(clear == 0 && (g - 30000 * d) >= 500000){
				clear = i + 1;
			}
		}
		sc.close();
		if(clear == 0){
			System.out.println("NO");						
		}else{
			System.out.println("YES");
			for(int j = 0; j < 6; j++){
				System.out.println(clear);
			}
		}
	}
}
0