結果

問題 No.2797 Square Tile
ユーザー haihamabossuhaihamabossu
提出日時 2024-06-28 23:37:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 1,376 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 211,224 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 23:37:23
合計ジャッジ時間 3,782 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 10 ms
5,376 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 6 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 2 ms
5,376 KB
testcase_19 AC 5 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 <atcoder/modint>
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using mint = atcoder::modint;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

void solve() {
  ll a, b;
  cin >> a >> b;
  ll L = a * a + b * b;
  mint::set_mod(L);
  bool swapped = false;
  if (a > b) {
    swap(a, b);
    swapped = true;
  }
  vector<vector<pair<ll, ll>>> ans(2);
  bool first = true;
  ll g = __gcd(a, b);
  for (mint i = 0, j = 0; first || !(i == 0 && j == 0); i += a, j += b) {
    vector offset(2, vector<mint>(2, 0));
    offset[1][0] = a;
    rep(gi, g) {
      ll i0 = (i + offset[0][0]).val();
      ll j0 = (j + offset[0][1]).val();
      ll i1 = (i + offset[1][0]).val();
      ll j1 = (j + offset[1][1]).val();
      ans[0].emplace_back(i0, j0);
      ans[1].emplace_back(i1, j1);
      if (gi % 2 == 0) {
        offset[0][0] += a + b + b;
        offset[0][1] += b - a;
        offset[1][0] += b;
      } else {
        offset[0][1] -= a;
        offset[1][0] += b + a;
        offset[1][1] += b - a - a;
      }
    }
    first = false;
  }
  if (swapped)
    swap(ans[0], ans[1]);
  rep(i, 2) rep(j, ans[i].size()) {
    cout << ans[i][j].first << ' ' << ans[i][j].second << '\n';
  }
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0