結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー hato336hato336
提出日時 2024-08-23 23:50:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 126,572 KB
最終ジャッジ日時 2024-08-23 23:50:39
合計ジャッジ時間 4,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,392 KB
testcase_01 AC 141 ms
77,360 KB
testcase_02 AC 126 ms
126,204 KB
testcase_03 AC 94 ms
116,244 KB
testcase_04 AC 109 ms
96,756 KB
testcase_05 AC 108 ms
92,592 KB
testcase_06 AC 96 ms
107,472 KB
testcase_07 AC 95 ms
89,040 KB
testcase_08 AC 77 ms
80,476 KB
testcase_09 AC 104 ms
115,416 KB
testcase_10 AC 108 ms
117,632 KB
testcase_11 AC 93 ms
96,304 KB
testcase_12 AC 128 ms
120,088 KB
testcase_13 AC 76 ms
82,656 KB
testcase_14 AC 67 ms
81,440 KB
testcase_15 AC 119 ms
122,960 KB
testcase_16 AC 77 ms
81,124 KB
testcase_17 AC 101 ms
102,148 KB
testcase_18 AC 99 ms
92,156 KB
testcase_19 AC 129 ms
119,788 KB
testcase_20 AC 84 ms
86,204 KB
testcase_21 AC 162 ms
126,572 KB
testcase_22 AC 262 ms
80,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve():
    k,m,n = map(int,input().split())
    y = [j for j in range(k)]
    c = [(y[i]+m-1)%k for i in range(k)]
    ans = 0
    s = set()
    e = []
    for i in range(k):
        now = i
        if now in s:
            continue
        temp = 1
        x = [now]
        while now not in s:
            s.add(now)
            now = c[now]
            x.append(now)
            temp += 1
        x.pop()
        e.append(x)
        ans += len(x)//2
    
    if n <= ans:
        print('Yes')
        cnt = 0
        for i in e:
            for j in range(len(i)):
                if j % 2 == 1:
                    print(i[j]+1,end=' ')
                    cnt += 1
                    if cnt == n:
                        print()
                        return
    else:

        print('No')
        return
for i in range(int(input())):
    solve()


0