結果

問題 No.512 魔法少女の追いかけっこ
ユーザー tsunabittsunabit
提出日時 2019-06-13 01:33:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 3,289 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 42,112 KB
最終ジャッジ日時 2024-10-12 05:47:50
合計ジャッジ時間 12,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,100 KB
testcase_01 AC 144 ms
41,464 KB
testcase_02 AC 151 ms
41,868 KB
testcase_03 AC 147 ms
41,348 KB
testcase_04 AC 151 ms
41,808 KB
testcase_05 AC 140 ms
41,096 KB
testcase_06 AC 143 ms
41,468 KB
testcase_07 AC 147 ms
41,768 KB
testcase_08 AC 147 ms
41,656 KB
testcase_09 AC 142 ms
41,520 KB
testcase_10 AC 138 ms
41,280 KB
testcase_11 AC 143 ms
41,764 KB
testcase_12 AC 144 ms
41,304 KB
testcase_13 AC 158 ms
41,456 KB
testcase_14 AC 144 ms
41,592 KB
testcase_15 AC 142 ms
41,616 KB
testcase_16 AC 144 ms
41,764 KB
testcase_17 AC 145 ms
41,796 KB
testcase_18 AC 144 ms
41,312 KB
testcase_19 AC 151 ms
41,636 KB
testcase_20 AC 143 ms
41,472 KB
testcase_21 AC 158 ms
41,312 KB
testcase_22 AC 141 ms
41,520 KB
testcase_23 AC 140 ms
41,972 KB
testcase_24 AC 152 ms
42,112 KB
testcase_25 AC 143 ms
41,824 KB
testcase_26 AC 132 ms
40,688 KB
testcase_27 AC 144 ms
41,344 KB
testcase_28 AC 137 ms
41,100 KB
testcase_29 AC 152 ms
41,728 KB
testcase_30 AC 143 ms
41,528 KB
testcase_31 AC 147 ms
41,520 KB
testcase_32 AC 149 ms
41,764 KB
testcase_33 AC 140 ms
40,576 KB
testcase_34 AC 147 ms
41,856 KB
testcase_35 AC 142 ms
41,596 KB
testcase_36 AC 140 ms
41,488 KB
testcase_37 AC 143 ms
41,420 KB
testcase_38 AC 146 ms
41,732 KB
testcase_39 AC 143 ms
41,428 KB
testcase_40 AC 148 ms
41,588 KB
testcase_41 AC 141 ms
41,424 KB
testcase_42 AC 127 ms
41,020 KB
testcase_43 AC 142 ms
41,388 KB
testcase_44 AC 150 ms
41,484 KB
testcase_45 AC 139 ms
41,468 KB
testcase_46 AC 127 ms
40,780 KB
testcase_47 AC 146 ms
41,756 KB
testcase_48 AC 148 ms
41,464 KB
testcase_49 AC 133 ms
40,652 KB
testcase_50 AC 136 ms
40,808 KB
testcase_51 AC 141 ms
41,844 KB
testcase_52 AC 147 ms
41,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No512 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	double x = sc.nextDouble() * 1000 / 3600, y = sc.nextDouble() * 1000 / 3600;
    	int n = sc.nextInt();
    	int[] a = new int[n];
    	
    	for(int i = 0; i < n; i++) {
    		a[i] = sc.nextInt();
    	}
    	for(int i = 0; i < n - 1; i++) {
    		double j = a[i] / x;
//    		System.out.println("i = " + (i + 1) + " a[i + 1] = " + a[i + 1] + ": j * y = " + (int)(j * y));
    		// y * a[i] * x > a[i + 1] → y * a[i] > a[i + 1] * x
    		if((int)(y * a[i]) > a[i + 1] * x) {
    			System.out.println("NO");
    			return;
    		}
    	}
    	System.out.println("YES");
    }
}
0