結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-06-06 02:21:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 1,265 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-10 09:00:42
合計ジャッジ時間 3,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
using ll = long long;

ll my_gcd(ll a, ll b) {
    ll ret = 0;
    if (a < b) {
        swap(a, b);
    }
    if (b == 0) {
        ret = a;
    } else {
        ret = my_gcd(b, a % b);
    }
    return ret;
}

int main() {
    ll T;
    cin >> T;
    while (T--) {
        ll K, M, N;
        cin >> K >> M >> N;
        if (M == 1) {
            cout << "No" << endl;
            continue;
        }
        M--;
        ll g = my_gcd(K, M);
        ll one_loop = K / g;
        ll max_ans = (one_loop / 2) * g;
        if (N > max_ans) {
            cout << "No" << endl;
        } else {
            cout << "Yes" << endl;
            vector<ll> A(0);
            for (ll i = 0; i < g; i++) {
                ll now = i;
                for (ll j = 0; j < one_loop / 2; j++) {
                    A.push_back(now);
                    now = (now + 2 * M) % K;
                    if (A.size() >= N) {
                        break;
                    }
                }
            }
            for (ll i = 0; i < N; i++) {
                cout << A[i] + 1;
                if (i < N - 1) {
                    cout << " ";
                }
            }
            cout << endl;
        }
    }
}
0