結果

問題 No.512 魔法少女の追いかけっこ
ユーザー fjafjafjafjafjafja
提出日時 2017-07-19 01:15:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 3,390 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-06-27 06:36:41
合計ジャッジ時間 11,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,312 KB
testcase_01 AC 116 ms
40,140 KB
testcase_02 AC 135 ms
41,376 KB
testcase_03 AC 132 ms
41,584 KB
testcase_04 AC 137 ms
41,432 KB
testcase_05 AC 130 ms
41,232 KB
testcase_06 AC 123 ms
41,296 KB
testcase_07 WA -
testcase_08 AC 131 ms
41,364 KB
testcase_09 AC 127 ms
41,068 KB
testcase_10 AC 131 ms
41,368 KB
testcase_11 AC 133 ms
41,632 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 128 ms
41,236 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 134 ms
41,632 KB
testcase_20 AC 124 ms
41,348 KB
testcase_21 WA -
testcase_22 AC 124 ms
41,328 KB
testcase_23 AC 126 ms
41,332 KB
testcase_24 AC 136 ms
41,336 KB
testcase_25 AC 118 ms
40,540 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 123 ms
41,464 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 133 ms
41,060 KB
testcase_32 AC 133 ms
41,620 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 127 ms
41,096 KB
testcase_36 AC 124 ms
41,372 KB
testcase_37 AC 127 ms
41,344 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 137 ms
41,292 KB
testcase_41 AC 116 ms
40,040 KB
testcase_42 WA -
testcase_43 AC 110 ms
40,464 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 132 ms
41,392 KB
testcase_48 AC 124 ms
41,544 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 126 ms
41,312 KB
testcase_52 AC 135 ms
41,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N512
{
	public static void main(String[] args)
	{
		Scanner sc =new Scanner (System.in);
		double X=sc.nextInt();
		double Y=sc.nextInt();
		int N=sc.nextInt();
		int[] A=new int[N];
		double D=Y-X;
		for(int i=0;i<N;i++)
		{
			A[i]=sc.nextInt();
		}
		double xtime=0;
		double now=0;
		double next=A[0];
		String msg="YES";
		for(int i=0;i<N-1;i++)
		{
			now+=A[i];
			next+=A[i+1];
			xtime=now/X;
			if(xtime*X>next)
			{
				msg="NO";
			}
		}
		System.out.println(msg);
	}

}
0