結果
| 問題 |
No.500 階乗電卓
|
| コンテスト | |
| ユーザー |
ei1333333
|
| 提出日時 | 2017-04-07 22:25:19 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 268 bytes |
| コンパイル時間 | 1,293 ms |
| コンパイル使用メモリ | 158,980 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-16 00:51:29 |
| 合計ジャッジ時間 | 2,066 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 WA * 13 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long int64;
const int64 mod = 1000000000000LL;
int main()
{
int N;
cin >> N;
int64 fact = 1;
for(int i = 1; i <= min(100, N); i++) {
fact *= i;
fact %= mod;
}
cout << fact << endl;
}
ei1333333