結果

問題 No.500 階乗電卓
ユーザー conankunconankun
提出日時 2017-10-14 00:17:06
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 346 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 55,644 KB
実行使用メモリ 16,960 KB
最終ジャッジ日時 2024-11-17 11:54:33
合計ジャッジ時間 31,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
10,016 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 2 ms
10,020 KB
testcase_08 AC 2 ms
13,636 KB
testcase_09 AC 2 ms
9,892 KB
testcase_10 AC 2 ms
13,632 KB
testcase_11 AC 1 ms
10,016 KB
testcase_12 AC 2 ms
13,636 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
6,816 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

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