結果

問題 No.231 めぐるはめぐる (1)
ユーザー 練習生練習生
提出日時 2015-08-07 16:20:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 3,406 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 57,140 KB
最終ジャッジ日時 2024-07-18 05:00:01
合計ジャッジ時間 6,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 109 ms
53,968 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 99 ms
52,848 KB
testcase_10 AC 117 ms
54,276 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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