結果

問題 No.2797 Square Tile
ユーザー Nzt3Nzt3
提出日時 2024-07-04 13:30:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 205,424 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 13:30:12
合計ジャッジ時間 4,030 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,l,r) for(int i=(l);i<(int)(r);i++)

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int A,B;
  cin>>A>>B;
  int X=A*A+B*B;
  bool swapf=0;
  if(A<B){
    swap(A,B);
    swapf=1;
  }
  int cnt=0;
  vector ansA(0,array<int,2>()),ansB=ansA;
  int sx=0,sy=0;
  while(cnt<A*A+B*B){
    int x=(sx+B)%X,y=(sy+A)%X;
    while(x!=sx||y!=sy){
      ansA.push_back({x,y});
      ansB.push_back({x,(y+A)%X});
      cnt+=1;
      x=(x+B)%X,y=(y+A)%X;
    }
    ansA.push_back({sx,sy});
    ansB.push_back({sx,(sy+A)%X});
    cnt+=1;
    sx=((sx+B-A)%X+X)%X,sy=(sy+A+B)%X;
  }
  if(swapf){
    swap(ansA,ansB);
  }
  for(auto i:ansA){cout<<i[0]<<' '<<i[1]<<'\n';}
  for(auto i:ansB){cout<<i[0]<<' '<<i[1]<<'\n';}

}
0