結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー Spica08Spica08
提出日時 2024-08-24 00:39:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,257 bytes
コンパイル時間 1,237 ms
コンパイル使用メモリ 108,852 KB
実行使用メモリ 13,132 KB
最終ジャッジ日時 2024-08-24 00:39:49
合計ジャッジ時間 6,217 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 122 ms
13,012 KB
testcase_03 AC 115 ms
13,012 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 91 ms
11,092 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 189 ms
13,132 KB
testcase_22 AC 631 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
    	continue;
    }
    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;
}
0