結果

問題 No.512 魔法少女の追いかけっこ
ユーザー akitsu818akitsu818
提出日時 2017-05-05 22:58:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 56,380 KB
最終ジャッジ日時 2024-06-27 06:09:25
合計ジャッジ時間 10,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,448 KB
testcase_01 AC 135 ms
41,480 KB
testcase_02 AC 142 ms
41,260 KB
testcase_03 AC 137 ms
41,492 KB
testcase_04 AC 139 ms
41,312 KB
testcase_05 AC 142 ms
41,420 KB
testcase_06 AC 135 ms
41,016 KB
testcase_07 WA -
testcase_08 AC 143 ms
41,508 KB
testcase_09 AC 129 ms
41,432 KB
testcase_10 AC 140 ms
41,108 KB
testcase_11 AC 139 ms
41,032 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 141 ms
41,080 KB
testcase_16 AC 133 ms
41,224 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 147 ms
41,796 KB
testcase_20 AC 132 ms
41,436 KB
testcase_21 WA -
testcase_22 AC 132 ms
41,512 KB
testcase_23 AC 128 ms
41,148 KB
testcase_24 AC 144 ms
41,352 KB
testcase_25 AC 137 ms
41,188 KB
testcase_26 AC 133 ms
41,608 KB
testcase_27 WA -
testcase_28 AC 130 ms
41,236 KB
testcase_29 AC 134 ms
41,388 KB
testcase_30 WA -
testcase_31 AC 143 ms
41,240 KB
testcase_32 AC 140 ms
41,608 KB
testcase_33 WA -
testcase_34 AC 132 ms
41,172 KB
testcase_35 AC 138 ms
41,392 KB
testcase_36 AC 119 ms
40,080 KB
testcase_37 AC 139 ms
41,512 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 143 ms
41,044 KB
testcase_41 AC 136 ms
41,668 KB
testcase_42 WA -
testcase_43 AC 134 ms
41,772 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 145 ms
41,492 KB
testcase_48 AC 130 ms
41,452 KB
testcase_49 WA -
testcase_50 AC 136 ms
41,312 KB
testcase_51 AC 135 ms
41,536 KB
testcase_52 AC 142 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String args[]){

		Scanner cin = new Scanner(System.in);

		int X = cin.nextInt();
		int Y = cin.nextInt();
		int N = cin.nextInt();
		int A[] = new int[N];
		long sum = 0L;
		boolean result = true;
		double rate = (Y-X)/X;

		for(int i=1;i<=N;i++){
			A[i-1] = cin.nextInt();
			if(i>1){
				if(sum*rate>(double)A[i-1]){
					result = false;
					break;
				}
			}
			sum += (long)A[i-1];
		}
		
		if(result){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}
}
0