結果

問題 No.3045 怪文書
ユーザー mujmilkmujmilk
提出日時 2021-03-26 20:40:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 3,108 ms
コンパイル使用メモリ 165,408 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 13:33:45
合計ジャッジ時間 7,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 642 ms
5,376 KB
testcase_14 AC 210 ms
5,376 KB
testcase_15 AC 57 ms
5,376 KB
testcase_16 AC 607 ms
5,376 KB
testcase_17 AC 1,121 ms
5,376 KB
testcase_18 AC 287 ms
5,376 KB
testcase_19 AC 1,132 ms
5,376 KB
testcase_20 AC 1,131 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
long factorial(long n){
    if (n<=1) return 1;
    return n*factorial(n-1);
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    long n;
    cin>>n;
    cout<<factorial(n)<<"\n";
}
0