結果

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

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;

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

    cout << answer << "\n";

    int a;
    cin >> a;

    return 0;
}
0