結果

問題 No.58 イカサマなサイコロ
ユーザー akakimidoriakakimidori
提出日時 2017-05-07 16:18:36
言語 C90
(gcc 12.3.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
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