結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー n0ma_run0ma_ru
提出日時 2024-08-23 21:53:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 203,964 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 21:54:00
合計ジャッジ時間 4,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
template<class F, class S>
ostream& operator<<(ostream& os, pair<F,S>& p) {
    os << '(' << p.first << ',' << p.second << ')';
    return os;
}
template<class Iter>
void print(Iter beg, Iter end) {
    for (Iter itr = beg; itr != end; ++itr) {
        cerr << *itr << ' ';
    }
    cerr << '\n';
}
inline bool naraba(bool a, bool b) { return (!a || b); }

int N,M,K;

void solve() {
    cin >> K >> M >> N;

    int D = gcd(K,M-1);
    int cnt = K/D/2 * D;

    if (cnt >= N) {
        cout << "Yes\n";
        int now = 0;
        vector<int> ans;
        for (int i = 0; i < K/D/2; ++i) {
            ans.push_back(now);
            now = (now + M-1) % K;
            now = (now + M-1) % K;
        }
        for (int i = 0; i < N; ++i) {
            int x = ans[i % ans.size()] + (i/ans.size()) + 1;
            cout << x << " \n"[i==N-1];
        }
    } else {
        cout << "No\n";
    }
}

int main() {
    int T;
    cin >> T;
    while (T--) {
        solve();
    }
}
0