結果

問題 No.500 階乗電卓
ユーザー mmn15277198mmn15277198
提出日時 2021-04-11 16:42:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 870 ms
コンパイル使用メモリ 92,240 KB
実行使用メモリ 5,180 KB
最終ジャッジ日時 2023-09-09 18:45:36
合計ジャッジ時間 2,670 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <functional>
#include <algorithm>
#include <map>
#include <cstdio>
#include <cmath>
#include <iomanip>

using namespace std;

int main() {
    long long n;
    cin >> n;
    vector<long long> fact(220000 , 0);
    fact[0] = 1;
    map<long long , int> mp;
    for (long long i = 1; i < 22000; i++) {
        long long now = i * fact[i - 1] % 1000000000000;
        if (mp[now] > 0) {
            break;
        }
        fact[i] = now;
        mp[now] = i;
    }
    int x = n % int(mp.size());
    cout << fact[x] << endl;
    return 0;
}




0