結果
問題 | No.2797 Square Tile |
ユーザー | ponjuice |
提出日時 | 2024-06-28 22:54:38 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,124 bytes |
コンパイル時間 | 4,575 ms |
コンパイル使用メモリ | 311,004 KB |
実行使用メモリ | 814,720 KB |
最終ジャッジ日時 | 2024-06-28 22:54:49 |
合計ジャッジ時間 | 6,182 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; using ll = long long; #define rep(i,a,b) for(ll i = a; i < b; i++) #define all(a) (a).begin(), (a).end() bool chmin(auto &a, auto b){if(a > b){a = b; return true;} return false;} bool chmax(auto &a, auto b){if(a < b){a = b; return true;} return false;} int main(){ int a,b; cin >> a >> b; vector<array<int,2>> ans; int mod = a * a + b * b; array<int,2> nw = {0,0}; rep(i,0,(a*a+b*b)){ ans.push_back(nw); nw[0] += a; nw[1] += b; nw[0] %= mod; nw[1] %= mod; } vector<vector<int>> mp(mod,vector<int>(mod,0)); rep(i,0,(ans.size())){ cout << ans[i][0] << " " << ans[i][1] << endl; rep(j,0,a){ rep(k,0,a){ mp[(ans[i][0]+j)%mod][(ans[i][1]+k)%mod] = 1; } } } rep(i,0,(ans.size())){ cout << (ans[i][0]+a)%mod << " " << ans[i][1] << endl; rep(j,0,b){ rep(k,0,b){ mp[(ans[i][0]+a+j)%mod][(ans[i][1]+k)%mod] = 2; } } } }