結果

問題 No.500 階乗電卓
ユーザー Naco
提出日時 2019-10-23 00:49:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 360 bytes
コンパイル時間 1,447 ms
コンパイル使用メモリ 166,548 KB
実行使用メモリ 16,952 KB
最終ジャッジ日時 2024-07-05 05:13:07
合計ジャッジ時間 7,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 3
other TLE * 1 -- * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    int N; cin >> N;
    long long mod=1e12;
    long long ans=1;
    if(N>=50){
        cout << "000000000000" << endl;
    }
    for(int i=1;i<=N;i++){
        ans=ans*i%mod;
    }
    if(N>=15){
        cout << setw(12) << setfill('0') << ans << endl;
    }else{
        cout << ans << endl;
    }
}
0