結果
問題 |
No.500 階乗電卓
|
ユーザー |
![]() |
提出日時 | 2017-10-14 00:20:03 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 378 bytes |
コンパイル時間 | 442 ms |
コンパイル使用メモリ | 55,076 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 11:54:49 |
合計ジャッジ時間 | 1,216 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 WA * 13 |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { const long long max = 1e12; long long answer = 1; long long n; cin >> n; n = n > 10002 ? 10001 : n; for (long long i = 2; i <= n; i++) { answer *= i; answer %= max; } cout << answer << "\n"; int a; cin >> a; return 0; }