結果
問題 | No.2257 Swim and Sleep |
ユーザー | noya2 |
提出日時 | 2023-02-24 04:13:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 7,137 ms |
コンパイル使用メモリ | 335,456 KB |
実行使用メモリ | 21,996 KB |
最終ジャッジ日時 | 2024-09-18 15:39:08 |
合計ジャッジ時間 | 8,544 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
/* 入力 validation。WA なら OK。 */ #include "testlib.h" #include<bits/stdc++.h> using namespace std; const int Tmin = 1, Tmax = 100; const int Xmin = 1, Xmax = 1'000'000'000; const int Kmin = 0, Kmax = 2000; int main(){ registerValidation(); int T = inf.readInt(Tmin,Tmax); inf.readEoln(); for (int t = 0; t < T; t++){ int h = inf.readInt(Xmin,Xmax); inf.readSpace(); int w = inf.readInt(Xmin,Xmax); inf.readSpace(); int k = inf.readInt(Kmin,Kmax); inf.readEoln(); set<pair<int,int>> st; for (int i = 0; i < k; i++){ int x = inf.readInt(0,h-1); inf.readSpace(); int y = inf.readInt(0,w-1); inf.readSpace(); char d = inf.readChar(); inf.readEoln(); st.insert(make_pair(x,y)); assert(d == 'U' || d == 'D' || d == 'L' || d == 'R'); } } inf.readEof(); return 0; }