結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,504 KB
testcase_01 AC 133 ms
41,600 KB
testcase_02 AC 143 ms
41,636 KB
testcase_03 AC 138 ms
41,172 KB
testcase_04 AC 140 ms
41,604 KB
testcase_05 AC 136 ms
41,364 KB
testcase_06 AC 133 ms
41,520 KB
testcase_07 WA -
testcase_08 AC 138 ms
41,636 KB
testcase_09 AC 132 ms
41,284 KB
testcase_10 AC 139 ms
41,392 KB
testcase_11 AC 138 ms
41,308 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 134 ms
41,148 KB
testcase_16 AC 132 ms
41,112 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 140 ms
41,592 KB
testcase_20 AC 117 ms
41,568 KB
testcase_21 WA -
testcase_22 AC 120 ms
40,240 KB
testcase_23 AC 135 ms
41,372 KB
testcase_24 AC 141 ms
41,300 KB
testcase_25 AC 133 ms
41,220 KB
testcase_26 AC 131 ms
41,676 KB
testcase_27 WA -
testcase_28 AC 133 ms
41,172 KB
testcase_29 AC 136 ms
41,520 KB
testcase_30 WA -
testcase_31 AC 140 ms
41,364 KB
testcase_32 AC 139 ms
41,572 KB
testcase_33 WA -
testcase_34 AC 132 ms
41,224 KB
testcase_35 AC 138 ms
41,572 KB
testcase_36 AC 132 ms
41,588 KB
testcase_37 AC 137 ms
41,124 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 141 ms
41,352 KB
testcase_41 AC 134 ms
41,464 KB
testcase_42 WA -
testcase_43 AC 131 ms
41,452 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 142 ms
41,472 KB
testcase_48 AC 134 ms
41,372 KB
testcase_49 WA -
testcase_50 AC 131 ms
41,252 KB
testcase_51 AC 132 ms
41,288 KB
testcase_52 AC 140 ms
41,252 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((double)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