結果

問題 No.3112 Decrement or Mod Game
ユーザー ponjuice
提出日時 2025-04-15 22:14:32
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 12,132 ms
コンパイル使用メモリ 350,740 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-04-15 22:16:18
合計ジャッジ時間 14,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 65
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

const ll min_ab = 1;
const ll max_ab = 1'000'000'000'000'000'000;

int main(){
    registerValidation();

    inf.readLong(min_ab, max_ab);
    inf.readSpace();
    inf.readLong(min_ab, max_ab);
    inf.readEoln();

    inf.readEof();
}
0