結果
問題 | No.502 階乗を計算するだけ |
ユーザー | kotamanegi |
提出日時 | 2017-04-07 23:00:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,626 bytes |
コンパイル時間 | 940 ms |
コンパイル使用メモリ | 103,492 KB |
実行使用メモリ | 814,720 KB |
最終ジャッジ日時 | 2024-07-16 02:52:34 |
合計ジャッジ時間 | 3,678 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <algorithm> #include <utility> #include <functional> #include <cstring> #include <queue> #include <stack> #include <math.h> #include <iterator> #include <vector> #include <string> #include <set> #include <math.h> #include <iostream> #include<map> #include <iomanip> #include <time.h> #include <random> #include <stdlib.h> #include <list> #include <typeinfo> #include <list> #include <set> using namespace std; #define LONG_INF 10000000000000000 #define MAX_MOD 1000000007 #define REP(i,n) for(long long i = 0;i < n;++i) map<long long, long long> wow; long long rev(long long n) { if (wow[n] != 0) return wow[n]; long long hoge = MAX_MOD-2; long long ans = 1; int hogehoge = n; while (hoge != 0){ if (hoge % 2 == 1) { ans *= n; ans %= MAX_MOD; } n *= n; n %= MAX_MOD; hoge /= 2; } return wow[hogehoge] = ans; } long long compare(long long a, long long b) { long long ans = 1; for (long long i = 0;i < b;++i) { ans *= (a-i); ans %= MAX_MOD; } for (int i = 1;i <= b;++i) { ans *= rev(i); ans %= MAX_MOD; } return ans; } long long solve(long long n) { long long ans = 1; if (n == 1) return 1; if (n % 2 == 0) { ans *= solve(n / 2); ans *= ans; ans %= MAX_MOD; ans *= compare(n, n / 2); ans %= MAX_MOD; return ans; } else { ans *= solve(n / 2); ans *= ans; ans %= MAX_MOD; ans *= compare(n, n / 2); ans %= MAX_MOD; ans *= n - n/ 2; ans %= MAX_MOD; return ans; } } int main() { long long n; cin >> n; if (n >= MAX_MOD) { cout << 0 << endl; return 0; } cout << solve(n) << endl; return 0; }