結果

問題 No.2631 Rectangle Grid Game
ユーザー 👑 potato167potato167
提出日時 2024-02-14 15:12:52
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 7,394 ms
コンパイル使用メモリ 331,776 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-28 18:54:43
合計ジャッジ時間 8,338 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int MIN_V = 2;
const int MAX_V = 1'000'000'000;

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