結果

問題 No.3399 One Two Three Two Three
コンテスト
ユーザー akakimidori
提出日時 2025-03-19 22:54:52
言語 C++23
(gcc 13.3.0 + boost 1.89.0)
結果
WA  
実行時間 -
コード長 300 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 7,124 ms
コンパイル使用メモリ 260,352 KB
実行使用メモリ 7,852 KB
最終ジャッジ日時 2025-12-05 23:33:00
合計ジャッジ時間 8,648 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 5
other WA * 40
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include "testlib.h"
#include <iostream>
#include <cassert>

const long long MIN_N = 1;
const long long MAX_N = 1000000000000000000LL;

int main(int argc, char** argv) {
    registerValidation(argc, argv);

    inf.readLong(MIN_N, MAX_N, "N");
    inf.readEoln();
    inf.readEof();

    return 0;
}
0