結果
問題 | No.76 回数の期待値で練習 |
ユーザー | akakimidori |
提出日時 | 2017-06-04 01:44:07 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 15 ms / 5,000 ms |
コード長 | 720 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 22,400 KB |
実行使用メモリ | 9,240 KB |
最終ジャッジ日時 | 2024-09-22 04:40:34 |
合計ジャッジ時間 | 559 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 15 ms
9,240 KB |
コンパイルメッセージ
main.c: In function ‘run’: main.c:6:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d",&t); | ^~~~~~~~~~~~~~ main.c:11:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%d",num+i); | ^~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<stdlib.h> void run(void){ int t; scanf("%d",&t); int num[50]; int n=6; int i; for(i=0;i<t;i++){ scanf("%d",num+i); n=(n<num[i]?num[i]:n); } double *e=(double *)malloc(sizeof(double)*(n+1)); e[0]=0; double p[7]; p[1]=(double)1/12; p[2]=(double)1/6; p[3]=(double)1/4; p[4]=(double)1/12; p[5]=(double)1/4; p[6]=(double)1/6; for(i=1;i<6;i++){ e[i]=1.0; int j; for(j=1;j<=i;j++){ e[i]+=p[j]*e[i-j]; } } for(i=6;i<=n;i++){ e[i]=1.0; int j; for(j=1;j<=6;j++){ e[i]+=p[j]*e[i-j]; } } for(i=0;i<t;i++){ printf("%.5lf\n",e[num[i]]); } free(e); return; } int main(void){ run(); return 0; }