結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー i_takui_taku
提出日時 2024-09-30 13:57:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 119,816 KB
最終ジャッジ日時 2024-09-30 13:58:03
合計ジャッジ時間 7,060 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 WA -
testcase_02 AC 130 ms
119,816 KB
testcase_03 AC 93 ms
105,216 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 91 ms
99,328 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 92 ms
98,560 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 63 ms
75,392 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 147 ms
117,648 KB
testcase_22 AC 558 ms
76,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    K, M, N = map(int, input().split())
    used = set()
    A = []
    for a in range(1, K + 1):
        b = (a + M - 2) % K + 1
        if a != b and a not in used and b not in used:
            used.add(a)
            used.add(b)
            A.append(a)
    if len(A) < N:
        print('No')
    else:
        print('Yes')
        print(*A[:N])
0