結果
問題 | No.2845 Birthday Pattern in Two Different Calendars |
ユーザー | Spica08 |
提出日時 | 2024-08-24 00:38:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,257 bytes |
コンパイル時間 | 1,146 ms |
コンパイル使用メモリ | 109,560 KB |
実行使用メモリ | 13,012 KB |
最終ジャッジ日時 | 2024-08-24 00:38:41 |
合計ジャッジ時間 | 6,265 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 121 ms
13,012 KB |
testcase_03 | AC | 118 ms
13,008 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 67 ms
9,856 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 88 ms
11,168 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 19 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 | 190 ms
13,008 KB |
testcase_22 | AC | 647 ms
6,948 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <utility> #include <tuple> #include <map> #include <queue> #include <set> #include <stack> #include <deque> #include <bitset> #include <cctype> #include <functional> #include <cassert> using namespace std; #define REP(i, n) for (int i = 0; i < (int)(n); i++) using ll = long long; using ull = unsigned long long; using Matrix = std::vector<std::vector<ll>>; const int inf = 1000000000; const ll INF = 1000000000000000000; const ll mod = 998244353; const ull mod_hash = (1UL << 61) - 1; const std::vector<int> dx = {0, 1, 0, -1, 1, 1, -1, -1}; const std::vector<int> dy = {1, 0, -1, 0, 1, -1, 1, -1}; int main(){ int T; cin >> T; while(T--){ int K, M, N; cin >> K >> M >> N; if(M==1){ cout << "No" <<endl; return 0; } set<int> day; vector<int> ans; REP(i, K){ int a = i + 1; int b = ((a + M - 2) % K) + 1; if(a != b && !day.count(a) && !day.count(b)){ day.insert(a); day.insert(b); ans.push_back(a); } } if(ans.size() >= N){ cout << "Yes" << endl; REP(i, N) cout << ans[i] << " "; cout << endl; }else{ cout << "No" << endl; } } return 0; }