結果
| 問題 | No.500 階乗電卓 |
| コンテスト | |
| ユーザー |
Naco
|
| 提出日時 | 2019-10-23 00:49:44 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 378 bytes |
| コンパイル時間 | 1,514 ms |
| コンパイル使用メモリ | 167,540 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-05 05:13:40 |
| 合計ジャッジ時間 | 2,597 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#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;
return 0;
}
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;
}
}
Naco