結果

問題 No.2339 Factorial Paths
ユーザー 👑 Nachia
提出日時 2023-06-02 20:33:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 7,377 ms
コンパイル使用メモリ 241,244 KB
最終ジャッジ日時 2025-02-13 17:28:30
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"

int main(){

    registerValidation();
    
    int N_MIN = 1;
    int N_MAX = 400;

    int N = inf.readInt(N_MIN, N_MAX);
    inf.readChar('\n');
    inf.readEof();

    return 0;
}
0