結果
問題 | No.2845 Birthday Pattern in Two Different Calendars |
ユーザー | AwashAmityOak |
提出日時 | 2024-08-23 21:25:14 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,638 bytes |
コンパイル時間 | 5,534 ms |
コンパイル使用メモリ | 309,640 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-23 21:25:23 |
合計ジャッジ時間 | 9,031 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 5 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 5 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 556 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ld = long double; using mint = modint998244353; istream& operator>> (istream& is, mint& x) { long long _x; is >> _x; x = _x; return is; } ostream& operator<< (ostream& os, const mint& x) { return os << x.val(); } template<class T, class U> ostream& operator<< (ostream& os, const pair<T, U>& x) { return os << "{" << x.first << ", " << x.second << "}"; } #define int ll #define OVERLOAD_REP(_1, _2, _3, name, ...) name #define REP2(i, l, r) for (int i = (int)(l); i < (int)(r); ++i) #define REP1(i, n) REP2(i, 0, n) #define rep(...) OVERLOAD_REP(__VA_ARGS__, REP2, REP1)(__VA_ARGS__) #define RREP2(i, r, l) for (int i = (int)(r)-1; i >= (int)(l); --i) #define RREP1(i, n) RREP2(i, n, 0) #define rrep(...) OVERLOAD_REP(__VA_ARGS__, RREP2, RREP1)(__VA_ARGS__) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) #define pb push_back #define mp make_pair #define mt make_tuple const int INF = 4e18; const int MOD = 998244353; const int MOD1 = 1e9 + 7; template<class T> inline bool chmax(T &a, T b) { return a < b ? a = b, 1 : 0; } template<class T> inline bool chmin(T &a, T b) { return a > b ? a = b, 1 : 0; } template<class T> T pow(T a, T b, T m) { return b ? b&1 ? a*pow(a, b^1, m)%m : pow(a*a%m, b>>1, m)%m : 1; } template<class T> T pow(T a, T b) { return b ? b&1 ? pow(a, b^1)*a : pow(a*a, b>>1) : 1; } template<class... T> inline void input(T&... a) { ((cin >> a), ...); } template<class T, class... U> inline void print(const T& a, const U&... b) { cout << a; ((cout << " " << b), ...); } template<class T, class... U> inline void println(const T& a, const U&... b) { print(a, b...); cout << endl; } inline void println() { cout << endl; } template<class T> inline void print(vector<T>& A) { rep(i, A.size()) if (i) print("", A[i]); else print(A[i]); } template<class T> inline void println(vector<T>& A) { print(A); cout << endl; } const int di[4] = {-1, 0, 1, 0}; const int dj[4] = {0, -1, 0, 1}; signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); int T; input(T); rep(t, T) { int K, M, N; input(K, M, N); --M; vector<bool> visited(K); vector<int> ans; rep(y, K) { if (visited[y]) continue; visited[y] = true; int c = (y + M) % K; if (visited[c]) continue; visited[c] = true; ans.pb(y+1); } if (N <= (int)ans.size()) { println("Yes"); print(ans[0]); rep(i, 1, N) print("", ans[i]); println(); } else { println("No"); } } }