結果

問題 No.512 魔法少女の追いかけっこ
ユーザー YamyukiYamyuki
提出日時 2017-05-05 22:36:03
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 20,864 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-27 05:58:37
合計ジャッジ時間 1,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 53
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%ld %ld",&x,&y);
      |         ^~~~~~~~~~~~~~~~~~~~~~
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%ld",&n);
      |         ^~~~~~~~~~~~~~~
main.c:8:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |                 scanf("%ld",&a[i]);
      |                 ^~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(int argc, char const *argv[]){
	long x,y,n,a[80],i;
	scanf("%ld %ld",&x,&y);
	scanf("%ld",&n);
	for(i=0;i<n;i++){
		scanf("%ld",&a[i]);
		if(i>0){
			if(a[i-1]*y/x+(a[i-1]*y%x!=0)>a[i]){
				printf("NO\n");
				return 0;
			}
		}
	}
	printf("YES\n");
	return 0;
}
0