結果
問題 | No.2644 Iro Iro-Iro |
ユーザー | noya2 |
提出日時 | 2024-02-18 23:30:14 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,366 bytes |
コンパイル時間 | 9,701 ms |
コンパイル使用メモリ | 337,492 KB |
実行使用メモリ | 31,400 KB |
最終ジャッジ日時 | 2024-09-29 00:56:12 |
合計ジャッジ時間 | 19,123 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include<bits/stdc++.h> #include"testlib.h" using namespace std; using ll = long long; const ll Nmin = 1, Nmax = 200'000; const ll Mmin = 1, Mmax = 200'000; const ll ABCmin = 0, ABCmax = 100; const ll XYZmin = -100, XYZmax = 100; int main(){ registerValidation(); ll n = inf.readLong(Nmin,Nmax); inf.readSpace(); ll m = inf.readLong(Mmin,Mmax); inf.readEoln(); set<tuple<ll,ll,ll>> abc; for (ll i = 0; i < n; i++){ ll a = inf.readLong(ABCmin,ABCmax); inf.readSpace(); ll b = inf.readLong(ABCmin,ABCmax); inf.readSpace(); ll c = inf.readLong(ABCmin,ABCmax); inf.readEoln(); abc.insert(make_tuple(a,b,c)); } ensuref((ll)(abc.size()) == n, "(A,B,C) must be distinct"); set<tuple<ll,ll,ll>> xyz; for (ll i = 0; i < m; i++){ ll x = inf.readLong(XYZmin,XYZmax); inf.readSpace(); ll y = inf.readLong(XYZmin,XYZmax); inf.readSpace(); ll z = inf.readLong(XYZmin,XYZmax); inf.readEoln(); xyz.insert(make_tuple(x,y,z)); } ensuref((ll)(xyz.size()) == m, "(X,Y,Z) must be discinct"); for (auto [a, b, c] : abc) for (auto [x, y, z] : xyz){ ensure(ABCmin <= a+x && a+x <= ABCmax); ensure(ABCmin <= b+y && b+y <= ABCmax); ensure(ABCmin <= c+z && c+z <= ABCmax); } inf.readEof(); }