結果
問題 | No.575 n! / m / m / m... |
ユーザー | rareone |
提出日時 | 2017-11-02 00:44:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,252 bytes |
コンパイル時間 | 1,570 ms |
コンパイル使用メモリ | 162,264 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 04:26:44 |
合計ジャッジ時間 | 4,008 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
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 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In lambda function: main.cpp:10:35: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | auto scan = []{ static LL a; scanf("%lld", &a); return a;}; | ~~~~~^~~~~~~~~~~~
ソースコード
#ifdef __APPLE__ #include "bits:stdc++.h" #else #include <bits/stdc++.h> #endif using namespace std; typedef long long LL; typedef pair<LL, LL> PLL; auto scan = []{ static LL a; scanf("%lld", &a); return a;}; const double PI = acos(-1); int main() { LL n = scan(), m = scan(), N = n; vector<PLL> ps; for (LL p = 2; p * p <= 1e6+10; ++p) if(N % p == 0) { LL time = 0; while (N % p == 0) ++time, N /= p; ps.push_back({p,time}); } if (N != 1) ps.push_back({N, 1}); if (n <= 10) { LL ans = 1; for (LL i = 1; i <= n; ++i) ans *= i; while (ans % m == 0) ans /= m; double lgans = log10(ans); LL flo = (LL) lgans; lgans -= flo; printf("%.2fe%lld\n",pow(10,lgans),flo); } else { double lgans = log10(sqrt(2 * PI * n)) + (log10(n) - log10(exp(1))) * n; LL div = 1.1e18; //printf("%.4E\n",lgans); for (PLL E: ps) { LL p = E.first, t = E.second; double check = p; LL thdiv = 0; for (LL cur = p; cur <= n && check <= n + 0.5; cur = cur * p, check = check * p) thdiv += n / cur; div = min(div, thdiv / t); } lgans -= log10(pow(m, div)); LL flo = 1LL * lgans; lgans -= flo; printf("%.2fe%lld\n",pow(10, lgans),flo); } }