結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー KudeKude
提出日時 2024-08-23 21:25:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 594 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 94,608 KB
最終ジャッジ日時 2024-08-23 21:25:07
合計ジャッジ時間 4,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,572 KB
testcase_01 AC 206 ms
78,832 KB
testcase_02 AC 106 ms
90,316 KB
testcase_03 AC 72 ms
73,972 KB
testcase_04 AC 103 ms
92,088 KB
testcase_05 AC 92 ms
82,176 KB
testcase_06 AC 77 ms
76,764 KB
testcase_07 AC 85 ms
83,524 KB
testcase_08 AC 67 ms
74,172 KB
testcase_09 AC 79 ms
77,816 KB
testcase_10 AC 81 ms
77,920 KB
testcase_11 AC 82 ms
79,584 KB
testcase_12 AC 107 ms
93,024 KB
testcase_13 AC 71 ms
74,964 KB
testcase_14 AC 59 ms
66,180 KB
testcase_15 AC 83 ms
81,780 KB
testcase_16 AC 72 ms
74,644 KB
testcase_17 AC 87 ms
81,880 KB
testcase_18 AC 85 ms
80,396 KB
testcase_19 AC 106 ms
92,736 KB
testcase_20 AC 81 ms
80,380 KB
testcase_21 AC 108 ms
94,608 KB
testcase_22 AC 594 ms
77,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    k, m, n = map(int, input().split())
    m -= 1
    used = [False] * k
    res = []
    for i in range(k):
        if used[i]:
            continue
        last = -1
        while not used[i]:
            used[i] = True
            if last == -1:
                last = i
            else:
                res.append(last)
                last = -1
            i = (i + m) % k
    if len(res) < n:
        print('No')
    else:
        print('Yes')
        print(*(x + 1 for x in res[:n]))
0