結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-24 01:12:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,384 KB
最終ジャッジ日時 2024-08-24 01:12:05
合計ジャッジ時間 4,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,064 KB
testcase_01 AC 163 ms
77,848 KB
testcase_02 AC 73 ms
86,384 KB
testcase_03 AC 42 ms
60,896 KB
testcase_04 AC 71 ms
84,208 KB
testcase_05 AC 64 ms
80,668 KB
testcase_06 AC 48 ms
66,156 KB
testcase_07 AC 61 ms
80,176 KB
testcase_08 AC 51 ms
69,468 KB
testcase_09 AC 46 ms
64,344 KB
testcase_10 AC 44 ms
63,056 KB
testcase_11 AC 53 ms
68,432 KB
testcase_12 AC 69 ms
85,516 KB
testcase_13 AC 49 ms
66,224 KB
testcase_14 AC 37 ms
53,328 KB
testcase_15 AC 48 ms
68,156 KB
testcase_16 AC 51 ms
69,196 KB
testcase_17 AC 49 ms
68,368 KB
testcase_18 AC 61 ms
79,436 KB
testcase_19 AC 71 ms
85,388 KB
testcase_20 AC 52 ms
74,600 KB
testcase_21 AC 69 ms
86,208 KB
testcase_22 AC 484 ms
77,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
from math import gcd
for _ in range(T):
  K,M,N=map(int,input().split())
  M-=1
  if M==0:
    print("No")
    continue
  g=gcd(K,M)
  if ((K//g)//2)*g>=N:
    print("Yes")
    a=[]
    for i in range(g):
      for j in range((K//g)//2):
        a+=[(i+M*2*j)%K+1]
        if len(a)==N:
          break
      if len(a)==N:
        break
    print(*a)
  else:
    print("No")
0