結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー kentikenti
提出日時 2024-08-23 23:43:06
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 1,107 ms
コンパイル使用メモリ 96,156 KB
実行使用メモリ 13,036 KB
最終ジャッジ日時 2024-08-23 23:43:13
合計ジャッジ時間 6,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 126 ms
13,008 KB
testcase_03 AC 111 ms
13,036 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 68 ms
9,856 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 87 ms
11,168 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 18 ms
6,944 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 191 ms
13,004 KB
testcase_22 AC 646 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
#include <vector>
using namespace std;

int K, M, N;

int t;
void solve();

int main() {
    cin >> t;
    for (int tt = 0; tt < t; tt++)
        solve();
    return 0;
}

void solve() {
    cin >> K >> M >> N;
    if (M == 1) {
        cout << "No" << endl;
        return;
    }
    set<int> s;
    vector<int> ans;
    for (int i = 1; i <= K; i++) {
        int tmp1 = i, tmp2 = (i + M - 2) % K + 1;
        if (!s.contains(tmp1) && !s.contains(tmp2)) {
            s.insert(tmp1); s.insert(tmp2);
            ans.push_back(tmp1);
        } 
    }
    if (ans.size() < N)
        cout << "No" << endl;
    else {
        cout << "Yes" << endl;
        for (int i = 0; i < N; i++)
            cout << ans[i] << ((i == N - 1) ? "\n" : " ");
    } 
}
0