結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー detteiuudetteiuu
提出日時 2024-08-23 22:01:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 100,708 KB
最終ジャッジ日時 2024-08-23 22:01:13
合計ジャッジ時間 4,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,212 KB
testcase_01 AC 214 ms
78,004 KB
testcase_02 AC 112 ms
100,708 KB
testcase_03 AC 87 ms
89,788 KB
testcase_04 AC 99 ms
86,396 KB
testcase_05 AC 93 ms
81,308 KB
testcase_06 AC 85 ms
87,796 KB
testcase_07 AC 90 ms
85,608 KB
testcase_08 AC 68 ms
74,476 KB
testcase_09 AC 90 ms
92,364 KB
testcase_10 AC 89 ms
90,968 KB
testcase_11 AC 85 ms
85,240 KB
testcase_12 AC 108 ms
99,880 KB
testcase_13 AC 75 ms
77,336 KB
testcase_14 AC 59 ms
70,704 KB
testcase_15 AC 99 ms
92,152 KB
testcase_16 AC 69 ms
75,348 KB
testcase_17 AC 89 ms
82,824 KB
testcase_18 AC 86 ms
81,344 KB
testcase_19 AC 110 ms
99,684 KB
testcase_20 AC 87 ms
80,900 KB
testcase_21 AC 110 ms
88,644 KB
testcase_22 AC 532 ms
76,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    K, M, N = map(int, input().split())
    visited = [False]*K
    A = []
    diff = M-1
    for i in range(K):
        if visited[i]:
            continue
        B = []
        visited[i] = True
        B.append(i)
        idx = i+diff
        while not visited[idx]:
            visited[idx] = True
            B.append(idx)
            idx += diff
            idx %= K
        for j in range(len(B)//2):
            A.append(B[j*2]+1)
    if len(A) >= N:
        print("Yes")
        print(*A[:N])
    else:
        print("No")
0