結果

問題 No.58 イカサマなサイコロ
ユーザー akakimidoriakakimidori
提出日時 2017-05-07 16:18:36
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 409 ms / 5,000 ms
コード長 492 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 22,144 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 14:45:25
合計ジャッジ時間 3,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
5,248 KB
testcase_01 AC 409 ms
5,376 KB
testcase_02 AC 85 ms
5,376 KB
testcase_03 AC 44 ms
5,376 KB
testcase_04 AC 246 ms
5,376 KB
testcase_05 AC 286 ms
5,376 KB
testcase_06 AC 368 ms
5,376 KB
testcase_07 AC 83 ms
5,376 KB
testcase_08 AC 164 ms
5,376 KB
testcase_09 AC 366 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘run’:
main.c:7:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |   scanf("%d%d",&n,&k);
      |   ^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<time.h>

void run(void){
  int n,k;
  scanf("%d%d",&n,&k);

  srand((unsigned)time(NULL));

  const int m=1000000;
  int win=0;
  int i;
  for(i=0;i<m;i++){
    int j;
    int t=0;
    for(j=0;j<n;j++){
      t+=rand()%6;
    }
    int s=0;
    for(j=0;j<n-k;j++){
      s+=rand()%6;
    }
    for(j=0;j<k;j++){
      s+=rand()%3+3;
    }
    win+=(s>t);
  }
  printf("%.4lf\n",(double)win/m);
  return;
}

int main(void){
  run();
  return 0;
}
0