結果

問題 No.3108 Luke or Bishop
ユーザー ponjuice
提出日時 2025-04-09 22:42:08
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 320 bytes
コンパイル時間 10,095 ms
コンパイル使用メモリ 351,852 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-04-12 20:54:20
合計ジャッジ時間 9,064 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int min_n = -1'000'000'000;
const int max_n = 1'000'000'000;

int main(){
    registerValidation();
    inf.readInt(min_n, max_n);
    inf.readSpace();
    inf.readInt(min_n, max_n);
    inf.readEoln();
    inf.readEof();
}
0