結果
問題 | No.575 n! / m / m / m... |
ユーザー |
|
提出日時 | 2017-11-02 01:22:27 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 1,317 bytes |
コンパイル時間 | 1,249 ms |
コンパイル使用メモリ | 158,816 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 14:56:00 |
合計ジャッジ時間 | 2,566 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
コンパイルメッセージ
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>#endifusing namespace std;typedef long long LL;typedef pair<LL, LL> PLL;auto scan = []{ static LL a; scanf("%lld", &a); return a;};LL times(LL n, LL m) {LL ans = 1.1e18;for (LL p = 2; p * p <= 1e12+10; ++p) {LL cm = 0, col = 0;while (m % p == 0) ++cm, m /= p;if(cm == 0) continue;double check = m;for (LL cur = p; cur <= n && check <= n + 0.5; cur = cur * p, check = check * p) {col += n / cur;}ans = min(ans, col/cm);}if (1 != m) {LL cm = 1, col = 0;double check = m;for (LL cur = m; cur <= n && check <= n + 0.5; cur = cur * m, check = check * m) {col += n / cur;}ans = min(ans, col/cm);}return ans;}const double PI = acos(-1);int main() {LL n = scan(), m = scan();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 {long double lgans = log10(sqrt(2 * PI * n)) + (log10(n) - log10(exp(1))) * n;lgans -= times(n, m) * log10(m);LL flo = 1LL * lgans;lgans -= flo;printf("%.2fe%lld\n", (double)pow(10, lgans), flo);}}