結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー 👑 rin204rin204
提出日時 2024-08-23 21:33:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 88,348 KB
最終ジャッジ日時 2024-08-23 21:33:50
合計ジャッジ時間 4,094 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,700 KB
testcase_01 AC 147 ms
77,384 KB
testcase_02 AC 79 ms
88,348 KB
testcase_03 AC 44 ms
61,336 KB
testcase_04 AC 75 ms
86,392 KB
testcase_05 AC 67 ms
81,784 KB
testcase_06 AC 48 ms
65,364 KB
testcase_07 AC 67 ms
78,556 KB
testcase_08 AC 51 ms
68,300 KB
testcase_09 AC 49 ms
64,508 KB
testcase_10 AC 45 ms
62,608 KB
testcase_11 AC 50 ms
68,388 KB
testcase_12 AC 79 ms
87,028 KB
testcase_13 AC 48 ms
65,728 KB
testcase_14 AC 40 ms
58,260 KB
testcase_15 AC 49 ms
67,404 KB
testcase_16 AC 49 ms
67,116 KB
testcase_17 AC 49 ms
67,896 KB
testcase_18 AC 65 ms
80,204 KB
testcase_19 AC 76 ms
86,940 KB
testcase_20 AC 54 ms
73,632 KB
testcase_21 AC 78 ms
88,232 KB
testcase_22 AC 574 ms
76,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd


def solve():
    k, m, n = map(int, input().split())
    m -= 1
    g = gcd(k, m)
    ma = (k // g) // 2 * 2 * g
    if ma < 2 * n:
        print("No")
        return

    print("Yes")
    used = [False] * k

    A = []
    for i in range(k):
        if used[i]:
            continue
        x = i
        while not used[x] and not used[(x + m) % k]:
            A.append(x + 1)
            used[x] = True
            used[(x + m) % k] = True
            x = (x + m * 2) % k

    A = A[:n]
    print(*A)


for _ in range(int(input())):
    solve()
0