結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,008 KB
testcase_01 WA -
testcase_02 AC 136 ms
117,684 KB
testcase_03 AC 57 ms
64,144 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 65 ms
71,640 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 62 ms
68,204 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 46 ms
59,244 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 139 ms
117,648 KB
testcase_22 AC 530 ms
77,296 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 = []
    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