結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー 👑 rin204rin204
提出日時 2024-08-23 21:32:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 88,148 KB
最終ジャッジ日時 2024-08-23 21:32:10
合計ジャッジ時間 4,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,520 KB
testcase_01 WA -
testcase_02 AC 83 ms
88,148 KB
testcase_03 AC 47 ms
62,772 KB
testcase_04 AC 72 ms
85,792 KB
testcase_05 AC 65 ms
81,424 KB
testcase_06 AC 49 ms
65,272 KB
testcase_07 AC 59 ms
78,440 KB
testcase_08 AC 52 ms
69,688 KB
testcase_09 AC 48 ms
65,016 KB
testcase_10 AC 47 ms
63,008 KB
testcase_11 AC 51 ms
69,104 KB
testcase_12 AC 78 ms
86,524 KB
testcase_13 AC 55 ms
67,664 KB
testcase_14 AC 38 ms
59,100 KB
testcase_15 AC 50 ms
68,300 KB
testcase_16 AC 50 ms
67,088 KB
testcase_17 AC 49 ms
67,800 KB
testcase_18 AC 58 ms
78,240 KB
testcase_19 AC 74 ms
86,388 KB
testcase_20 AC 53 ms
74,420 KB
testcase_21 AC 78 ms
87,708 KB
testcase_22 AC 539 ms
76,880 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

    print(*A)


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