結果
問題 | No.500 階乗電卓 |
ユーザー |
![]() |
提出日時 | 2017-11-29 02:52:42 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 757 bytes |
コンパイル時間 | 647 ms |
コンパイル使用メモリ | 79,816 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 03:05:36 |
合計ジャッジ時間 | 1,382 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <iostream>#include <vector>#include <string>#include <cstring>#include <math.h>#include <cmath>#include <limits.h>#include <map>#include <set>#include <queue>#include <algorithm>#include <functional>#include <stdio.h>using namespace std;long long MOD = 1000000007;int main() {long long N;cin >> N;string ans;long long x = 1;bool is_over = false;for ( long long i = 1; i <= N; i++ ) {x *= i;if ( x >= 1000000000000 ) { is_over = true; }x %= 1000000000000;if ( !x ) { break; }}string y = to_string(x);if ( is_over ) { string s( 12-y.length(),'0'); ans = s; ans += y; }else { ans = y; }cout << ans << endl;return 0;}