結果
| 問題 |
No.512 魔法少女の追いかけっこ
|
| コンテスト | |
| ユーザー |
akitsu818
|
| 提出日時 | 2017-05-05 23:08:02 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 539 bytes |
| コンパイル時間 | 2,036 ms |
| コンパイル使用メモリ | 74,612 KB |
| 実行使用メモリ | 41,744 KB |
| 最終ジャッジ日時 | 2024-06-27 06:12:40 |
| 合計ジャッジ時間 | 10,306 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 WA * 26 |
ソースコード
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];
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)(A[i-1]-A[i-2])*rate>(double)A[i-1]){
result = false;
break;
}
}
}
if(result){
System.out.println("YES");
}else{
System.out.println("NO");
}
}
}
akitsu818