結果

問題 No.242 ビンゴゲーム
ユーザー vwxyz
提出日時 2021-09-02 20:56:42
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 266,520 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-30 10:21:26
合計ジャッジ時間 3,939 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;

int main(){
    int N;cin>>N;
    long double ans=12;
    for(int i=0;i<5;i++){
        ans*=N-4+i;
        ans/=95+i;
    }
    cout<<ans;
}
0