結果

問題 No.463 魔法使いのすごろく🎲
ユーザー YamyukiYamyuki
提出日時 2016-12-14 17:07:56
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 21,760 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 14:08:58
合計ジャッジ時間 1,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 0 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 0 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 0 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1 ms
5,376 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 0 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 0 ms
5,376 KB
testcase_38 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d %d",&n,&m);
      |         ^~~~~~~~~~~~~~~~~~~~
main.c:10:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |                 scanf("%ld",&c[i+1]);
      |                 ^~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(){
	int n,m,i,j;
	long c[99];
	double ans[100];
	scanf("%d %d",&n,&m);
	c[0]=0;
	for(i=0;i<n-2;i++){
		scanf("%ld",&c[i+1]);
	}
	ans[n-1]=0.0;
	for(i=n-2;i>=0;i--){
		ans[i]=0.0;
		if(i<n-1-m){
			for(j=0;j<m;j++){
				ans[i]+=ans[i+1+j];
			}
			ans[i]/=(double)m;
		}
		ans[i]+=(double)c[i];
	}
	printf("%.12f\n",ans[0]);
	return 0;
}
0