結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー titiatitia
提出日時 2024-08-25 03:00:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,552 KB
最終ジャッジ日時 2024-08-25 03:00:49
合計ジャッジ時間 6,664 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 211 ms
17,756 KB
testcase_03 AC 127 ms
16,384 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 92 ms
14,848 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 113 ms
15,616 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 55 ms
12,672 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 234 ms
18,552 KB
testcase_22 AC 856 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())

for tests in range(T):
    K,M,N=map(int,input().split())
    M-=1

    if M==0:
        print("No")
        continue
    
    USE=[0]*K

    ANS=[]
    for i in range(K):
        if USE[i]==0 and USE[(i+M)%K]==0:
            ANS.append(i+1)
            USE[i]=1
            USE[(i+M)%K]=1

    if len(ANS)>=N:
        print("Yes")
        print(*ANS[:N])
    else:
        print("No")
        
            
0