結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー AyunaAyuna
提出日時 2024-08-23 23:20:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 117,552 KB
最終ジャッジ日時 2024-08-23 23:20:50
合計ジャッジ時間 6,020 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,220 KB
testcase_01 WA -
testcase_02 AC 126 ms
117,552 KB
testcase_03 AC 57 ms
65,712 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 64 ms
71,972 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 62 ms
67,908 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 46 ms
59,816 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,308 KB
testcase_22 AC 523 ms
76,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    k, m, n = map(int, input().split())
    if k < n * 2 or m == 1:
        print("No")
        continue
    st = set()
    ans = []
    if m > k // 2:
        for b in range(1, k + 1):
            a = (b - m) % k + 1
            if (not a in st) and (not b in st):
                st.add(a)
                st.add(b)
                ans.append(a)
            if len(ans) == n:
                break
    else:
        for a in range(1, k + 1):
            b = (a + m - 2) % k + 1
            if (not a in st) and (not b in st):
                st.add(a)
                st.add(b)
                ans.append(a)
            if len(ans) == n:
                break
    if len(ans) == n:
        print("Yes")
        print(*ans)
    else:
        print("No")
0