結果
問題 | No.502 階乗を計算するだけ |
ユーザー | coderkc |
提出日時 | 2019-06-06 01:50:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 997 bytes |
コンパイル時間 | 715 ms |
コンパイル使用メモリ | 65,520 KB |
実行使用メモリ | 7,368 KB |
最終ジャッジ日時 | 2024-09-22 16:39:58 |
合計ジャッジ時間 | 2,601 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,812 KB |
testcase_01 | AC | 10 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:25:23: warning: ‘N’ is used uninitialized [-Wuninitialized] 25 | cout << Factrial[N] << endl; | ^
ソースコード
#include <iostream> #include <math.h> #include <vector> #define ll long long using namespace std; //x!を10^9+7で割った余り ll Factrial[400010]; //(x!)^-1=(x!)^mod-2 ll FactInv[100010]; ll mod = 1000000007; vector<int> v; void makeFactrial(); void makeFactInv(); ll powmod(int a); int main(){ int N; makeFactrial(); cout << Factrial[N] << endl; return 0; } void makeFactrial(){ Factrial[0] = 1; for(int i=1;i<400000;i++){ Factrial[i] = (i * Factrial[i-1]) % mod; } } void makeFactInv(){ for(int i=0;i<100000;i++){ FactInv[i] = powmod(Factrial[i]); } } ll powmod(int a){ int ret=1; for(int i=mod;i>0;i -= (i&-i)){ v.push_back(log2(i&-i)); } int vmax = v[v.size()-1]; int a_2_mod[vmax]; a_2_mod[0] = a%mod; for(int i=1;i<=vmax;i++){ a_2_mod[i] = (a_2_mod[i-1]*a_2_mod[i-1])%mod; } for(int i=0;i<v.size();i++){ ret = (ret * a_2_mod[v[i]])%mod; } return ret; }