結果

問題 No.8123 Calculated N !
コンテスト
ユーザー さがかんすけ
提出日時 2025-10-19 22:18:19
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 5,486 ms
コンパイル使用メモリ 251,052 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-10-19 22:18:26
合計ジャッジ時間 5,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 5
other AC * 1 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll = long long;
#define rep(i , n) for(int i=0; i< (int)(n); i++)
#define int long long
const ll INF = 1e18;
const int inf = 1e9;
int32_t main(){
	ll n;
	cin >> n;
	cout << n % 1000000007 << endl;

}
0