結果
問題 | No.2843 Birthday Present Struggle |
ユーザー | MM |
提出日時 | 2024-08-23 21:04:46 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,003 bytes |
コンパイル時間 | 8,662 ms |
コンパイル使用メモリ | 334,272 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-23 21:04:59 |
合計ジャッジ時間 | 9,444 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,944 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 2 ms
6,944 KB |
testcase_35 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> #define chmin(x,y) (x) = min((x),(y)) #define chmax(x,y) (x) = max((x),(y)) using namespace std; using namespace atcoder; using ll = long long; const ll mod = 998244353; using mint = modint998244353; using Graph = vector<vector<int>>; const vector<int> dx ={1,0,-1,0}, dy = {0,1,0,-1}; // https://betrue12.hateblo.jp/entry/2020/09/22/194541 struct S{ int value; int size; }; using F = int; const F ID = int(2e9); S op(S a, S b){ return {a.value+b.value, a.size+b.size}; } S e(){ return {0, 0}; } S mapping(F f, S x){ if(f != ID) x.value = x.size * f; return x; } F composition(F f, F g){ return (f == ID ? g : f); } F id(){ return ID; } int main() { // input int N; cin >> N; int a1,a2,b1,b2,c1,c2; cin >> a1 >> a2 >> b1 >> b2 >> c1 >> c2; // output cout << 8 << endl; for(int i = -1; i <= 1; i++){ for(int j = -1; j <= 1; j++){ if(i == 0 && j == 0) continue; cout << c1+i << " " << c2+j << endl; } } }