結果
問題 | No.242 ビンゴゲーム |
ユーザー |
![]() |
提出日時 | 2015-07-11 00:11:48 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 215 bytes |
コンパイル時間 | 382 ms |
コンパイル使用メモリ | 61,636 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-08 02:26:41 |
合計ジャッジ時間 | 848 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 8 |
ソースコード
#include<iostream>#include<iomanip>using namespace std;int main(){cout << fixed;int N;cin >> N;double p=1;for (int i = 0; i < 5; i++)p *= N - i, p /= 99 - i;cout << p * 12 << endl;double res=0;}