結果

問題 No.575 n! / m / m / m...
ユーザー rareonerareone
提出日時 2017-11-02 00:28:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 881 bytes
コンパイル時間 1,644 ms
コンパイル使用メモリ 165,836 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 04:26:32
合計ジャッジ時間 4,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 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 AC 3 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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();
  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)) + n * log10(n/exp(1)), check = m;
    LL div = 0;
    //printf("%.4E\n",lgans);
    for (LL cur = m; cur <= n && check <= n + 1; cur = cur * m, check = check * m)
      div += n / cur;
    lgans -= log10(pow(m,div));
    LL flo = (LL) lgans;
    lgans -= flo;
    printf("%.2fe%lld\n",pow(10,lgans),flo);
  }
  
}
0