結果

問題 No.500 階乗電卓
ユーザー conankun
提出日時 2017-10-14 00:25:38
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 61,764 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-17 11:54:53
合計ジャッジ時間 1,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 14 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <iomanip>

using namespace std;

int main() {
    const long long max = 1e12;
    long long answer = 1;
    long long n;
    cin >> n;
    n = n > 10002 ? 10001 : n;
    for (long long i = 2; i <= n; i++) {
        answer *= i;
        answer %= max;
    }

    cout << std::setfill('0') << std::left << std::setw(12) << answer << "\n";

    int a;
    cin >> a;

    return 0;
}
0