結果
問題 | No.1603 Manhattan Social Distance |
ユーザー | s k |
提出日時 | 2021-07-17 10:58:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,385 bytes |
コンパイル時間 | 1,746 ms |
コンパイル使用メモリ | 200,344 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 22:33:32 |
合計ジャッジ時間 | 2,406 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
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 | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; using Pa = pair<ll,ll>; // vector<Pa> event; event.emplace_back(a,b); // 複数要素(複雑なのを含む)->sortしないならclassを作成すべし using Vll = vector<ll>; // Vll a(6,0); //要素0~5 初期値0 using VVll = vector<Vll>; // VVll G(N+1,Vll(0)); VVll a(5,Vll(3,0)); vector<VVll> G(H+1,VVll(W+1,Vll(5,0))); #define INF (ll)1<<60 // 10^18 < 1<<60 = 1152921504606846976 #define FOR(i,a,b) for(ll i=(ll)(a); i<(ll)(b); i++)// a ~ b-1 i++ for #define FOR_(i,b,a) for(ll i=(ll)(b)-1; (ll)(a)<=i; i--)// b-1 ~ a i-- for #define ALL(a) (a).begin(),(a).end() // min,max,sort,find,lower_bound #define OI(s) cout<<(s)<<"\n" // printf("%8.8lf\n",(s));//double 小数点上8桁まで,下8桁まで出力 #define OI2(s0,s1) cout<<(s0)<<" "<<(s1)<<"\n" #define OI3(s0,s1,s2) cout<<(s0)<<" "<<(s1)<<" "<<(s2)<<"\n" #define OI4(s0,s1,s2,s3) cout<<(s0)<<" "<<(s1)<<" "<<(s2)<<" "<<(s3)<<"\n" #define OIV(a) for(ll i=0;i<(a).size();i++){if((a)[i]==INF){cout<<"I"<<" ";}else {cout<<(a)[i]<<" ";}} cout<<""<<"\n" #define OIVV(a) for(ll i=0;i<(a).size();i++){for(ll j=0;j<(a[i]).size();j++){if((a)[i][j]==INF){cout<<"I"<<" ";}else {cout<<(a)[i][j]<<" ";}}cout<<" "<<"\n";} int main(){ ll N,H,W; cin>>N>>H>>W; ll ax=0,ay=0; ax=(N-1)*(H-1); ay=(N-1)*(W-1); OI(ax+ay); return 0; }