結果
問題 | No.2285 Make A Unit Square |
ユーザー | 👑 potato167 |
提出日時 | 2023-04-28 04:30:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 443 bytes |
コンパイル時間 | 8,468 ms |
コンパイル使用メモリ | 331,664 KB |
実行使用メモリ | 13,220 KB |
最終ジャッジ日時 | 2024-11-17 07:05:20 |
合計ジャッジ時間 | 9,334 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <bits/stdc++.h> #include "testlib.h" using namespace std; using ll=long long; const int MIN_T=1; const int MAX_T=100'000; const int MIN_V=2; const int MAX_V=1'000'000'000; int main(int argc,char** argv){ registerValidation(argc,argv); int T=inf.readInt(MIN_T,MAX_T); inf.readEoln(); for(int i=0;i<T;i++){ int a=inf.readInt(MIN_V,MAX_V); inf.readSpace(); int b=inf.readInt(MIN_V,MAX_V); inf.readEoln(); } inf.readEof(); }