結果
問題 | No.2845 Birthday Pattern in Two Different Calendars |
ユーザー | n0ma_ru |
提出日時 | 2024-08-23 21:50:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,134 bytes |
コンパイル時間 | 2,118 ms |
コンパイル使用メモリ | 203,776 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-23 21:50:15 |
合計ジャッジ時間 | 5,200 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 9 ms
6,940 KB |
testcase_05 | AC | 6 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 4 ms
6,944 KB |
testcase_21 | AC | 10 ms
6,940 KB |
testcase_22 | AC | 350 ms
6,940 KB |
ソースコード
#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+1 << " \n"[i==N-1]; } } else { cout << "No\n"; } } int main() { int T; cin >> T; while (T--) { solve(); } }