結果
| 問題 | No.500 階乗電卓 |
| コンテスト | |
| ユーザー |
DaYuanChi
|
| 提出日時 | 2021-01-26 00:09:15 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 571 bytes |
| コンパイル時間 | 1,628 ms |
| コンパイル使用メモリ | 175,948 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-23 00:03:34 |
| 合計ジャッジ時間 | 2,428 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
map<ll, ll> memo;
ll f(int n){
if(memo.find(n) != memo.end()) return memo[n];
if(n<=1) return memo[n] = 1;
else return memo[n] = (n*f(n-1))%1000000000000;
}
int main(){
int n; cin >> n;
if(n<=14){
cout << f(n) << endl;
return 0;
}
if(n>=15 && n <=49){
string t = to_string(f(n));
int m = 12 - t.size();
for(int i = 0; i < m; i++){
t = '0'+t;
}
cout << t << endl;
return 0;
}
if(n>=50){
cout << "000000000000" << endl;
return 0;
}
}
DaYuanChi