結果
| 問題 | No.500 階乗電卓 |
| コンテスト | |
| ユーザー |
hiyokko2
|
| 提出日時 | 2017-08-03 17:50:44 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 674 bytes |
| コンパイル時間 | 1,271 ms |
| コンパイル使用メモリ | 159,056 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-25 03:03:03 |
| 合計ジャッジ時間 | 2,064 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include <bits/stdc++.h>
#define FOR(i,bg,ed) for(ll i=(bg);i<(ed);i++)
#define REP(i,n) FOR(i,0,n)
#define MOD 1000000007
#define int long long
using namespace std;
typedef long long ll;
typedef vector<vector<ll>> mat;
const int INF = 1e9;
signed main()
{
ll N;
cin >> N;
if (N > 100) {
cout << "000000000000" << endl;
return 0;
}
ll ans = 1LL;
bool over = false;
for (ll i=2; i<=N; i++) {
ans *= i;
if (ans >= 1000000000000LL) {
ans %= 1000000000000LL;
over = true;
}
}
if (over) {
printf("%012lld\n", ans);
} else {
cout << ans << endl;
}
}
hiyokko2