結果
問題 | No.2845 Birthday Pattern in Two Different Calendars |
ユーザー | GOTKAKO |
提出日時 | 2024-08-23 21:39:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 808 bytes |
コンパイル時間 | 2,217 ms |
コンパイル使用メモリ | 207,508 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-23 21:39:16 |
合計ジャッジ時間 | 4,826 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 12 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 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 | 15 ms
6,940 KB |
testcase_22 | AC | 73 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--){ int K,M,N; cin >> K >> M >> N; if(M == 1 || N*2 > K){cout << "No\n"; continue;} vector<int> B(K); for(int i=0; i<K; i++) B.at(i) = (i+M-1)%K; vector<bool> ng(K); vector<int> answer; for(int i=0; i<K; i++){ if(ng.at(i) || ng.at(B.at(i))) continue; answer.push_back(i); ng.at(i) = true; ng.at(B.at(i)) = true; } while(answer.size() > N) answer.pop_back(); if(answer.size() < N) cout << "No\n"; else{ cout << "Yes\n"; for(int i=0; i<N; i++) cout << answer.at(i)+1 << (i==N-1?"\n":" "); } } }