結果
問題 | No.500 階乗電卓 |
ユーザー |
![]() |
提出日時 | 2017-04-07 22:36:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 240 bytes |
コンパイル時間 | 489 ms |
コンパイル使用メモリ | 65,188 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-16 01:05:01 |
合計ジャッジ時間 | 1,135 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 WA * 4 |
ソースコード
#include <iostream> using namespace std; int main(){ long long n, ans = 1; cin >> n; if(100 <= n){ cout << string(12, '0') << endl; return 0; } for(long long i = 1; i <= n; i++) (ans *= i) %= 1000000000000; cout << ans << endl; }