結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー 遭難者遭難者
提出日時 2024-06-10 08:51:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 100,480 KB
最終ジャッジ日時 2024-06-10 09:01:02
合計ジャッジ時間 4,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,612 KB
testcase_01 AC 205 ms
77,912 KB
testcase_02 AC 97 ms
100,480 KB
testcase_03 AC 73 ms
89,844 KB
testcase_04 AC 83 ms
86,268 KB
testcase_05 AC 76 ms
81,304 KB
testcase_06 AC 74 ms
88,260 KB
testcase_07 AC 75 ms
85,516 KB
testcase_08 AC 58 ms
74,316 KB
testcase_09 AC 78 ms
90,816 KB
testcase_10 AC 75 ms
91,136 KB
testcase_11 AC 73 ms
84,752 KB
testcase_12 AC 95 ms
99,392 KB
testcase_13 AC 64 ms
77,232 KB
testcase_14 AC 51 ms
71,184 KB
testcase_15 AC 84 ms
92,060 KB
testcase_16 AC 60 ms
74,900 KB
testcase_17 AC 75 ms
82,640 KB
testcase_18 AC 76 ms
81,376 KB
testcase_19 AC 98 ms
99,536 KB
testcase_20 AC 71 ms
80,448 KB
testcase_21 AC 96 ms
88,144 KB
testcase_22 AC 470 ms
75,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    k, m, n = map(int, input().split())
    c = [False] * k
    ans = []
    for st in range(k):
        if c[st]:
            continue
        loop = []
        now = st
        while True:
            loop.append(now)
            c[now] = True
            now = (now + m - 1) % k
            if now == st:
                break
        for i in range(1, len(loop), 2):
            ans.append(loop[i] + 1)
    if len(ans) < n:
        print("No")
    else:
        print("Yes")
        print(*ans[:n])
0