結果
問題 | No.2112 All 2x2 are Equal |
ユーザー | 沙耶花 |
提出日時 | 2022-10-28 23:26:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 906 bytes |
コンパイル時間 | 3,851 ms |
コンパイル使用メモリ | 267,156 KB |
実行使用メモリ | 54,272 KB |
最終ジャッジ日時 | 2024-07-06 02:41:49 |
合計ジャッジ時間 | 9,719 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 7 ms
6,816 KB |
testcase_03 | AC | 7 ms
6,940 KB |
testcase_04 | AC | 100 ms
24,064 KB |
testcase_05 | AC | 132 ms
30,592 KB |
testcase_06 | WA | - |
testcase_07 | AC | 78 ms
18,432 KB |
testcase_08 | AC | 191 ms
41,600 KB |
testcase_09 | AC | 11 ms
6,944 KB |
testcase_10 | AC | 85 ms
20,992 KB |
testcase_11 | AC | 54 ms
15,360 KB |
testcase_12 | AC | 69 ms
17,280 KB |
testcase_13 | WA | - |
testcase_14 | AC | 9 ms
6,944 KB |
testcase_15 | AC | 147 ms
33,536 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 189 ms
40,832 KB |
testcase_18 | WA | - |
testcase_19 | AC | 14 ms
6,940 KB |
testcase_20 | AC | 7 ms
6,948 KB |
testcase_21 | AC | 186 ms
39,424 KB |
testcase_22 | AC | 10 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | AC | 20 ms
7,680 KB |
testcase_25 | AC | 27 ms
9,344 KB |
testcase_26 | WA | - |
testcase_27 | AC | 42 ms
12,416 KB |
testcase_28 | AC | 104 ms
25,472 KB |
testcase_29 | AC | 15 ms
6,940 KB |
testcase_30 | AC | 69 ms
18,048 KB |
testcase_31 | AC | 135 ms
31,744 KB |
testcase_32 | WA | - |
testcase_33 | AC | 271 ms
54,272 KB |
testcase_34 | AC | 267 ms
54,272 KB |
testcase_35 | AC | 260 ms
54,144 KB |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 4000000000000000001 int main(){ int h,w; cin>>h>>w; if(h==2&&w==2){ cout<<"Yes"<<endl; cout<<"1 3"<<endl; cout<<"2 4"<<endl; return 0; } if(h%2==0&&w%2==0){ cout<<"No"<<endl; return 0; } vector a(h,vector<int> (w)); rep(i,w)a[0][i] = i; for(int i=1;i<h;i++){ a[i] = a[0]; if(i%2==1)reverse(a[i].begin(),a[i].end()); } rep(i,w){ rep(j,h){ if(i%2==0){ a[j][i] += j*w; } else{ a[h-1-j][i] += j*w; } } } cout<<"Yes"<<endl; rep(i,h){ rep(j,w){ if(j!=0)cout<<' '; cout<<a[i][j]+1; } cout<<endl; } set<int> s; rep(i,h){ rep(j,w){ s.insert(a[i][j]); } } //cout<<s.size()<<endl; return 0; }