結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー miya145592miya145592
提出日時 2024-08-24 02:25:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 102,636 KB
最終ジャッジ日時 2024-08-24 02:25:26
合計ジャッジ時間 4,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,468 KB
testcase_01 AC 160 ms
79,668 KB
testcase_02 AC 101 ms
102,636 KB
testcase_03 AC 76 ms
88,408 KB
testcase_04 AC 111 ms
85,780 KB
testcase_05 AC 77 ms
81,880 KB
testcase_06 AC 75 ms
87,360 KB
testcase_07 AC 80 ms
85,988 KB
testcase_08 AC 59 ms
75,464 KB
testcase_09 AC 80 ms
91,428 KB
testcase_10 AC 76 ms
91,028 KB
testcase_11 AC 74 ms
84,800 KB
testcase_12 AC 94 ms
99,532 KB
testcase_13 AC 67 ms
77,068 KB
testcase_14 AC 54 ms
71,044 KB
testcase_15 AC 98 ms
91,968 KB
testcase_16 AC 62 ms
74,344 KB
testcase_17 AC 74 ms
82,692 KB
testcase_18 AC 75 ms
81,308 KB
testcase_19 AC 97 ms
99,416 KB
testcase_20 AC 73 ms
80,672 KB
testcase_21 AC 99 ms
88,448 KB
testcase_22 AC 238 ms
98,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
input = sys.stdin.readline
T = int(input())
KMN = [list(map(int, input().split())) for _ in range(T)]
for k, m, n in KMN:
    if m-1==0:
        print("No")
        continue
    g = math.gcd(k, m-1)
    a = [i for i in range(k)]
    ans = []
    for i in range(g):
        b = []
        for j in range(0, k//g):
            b.append(a[(i+j*(m-1))%k])
        for j in range(0, k//g-1, 2):
            ans.append(b[j]+1)
    if len(ans)>=n:
        print("Yes")
        print(*ans[:n])
    else:
        print("No")
0