結果

問題 No.2870 Dice Making
ユーザー rlangevinrlangevin
提出日時 2024-09-06 21:22:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-09-06 21:22:43
合計ジャッジ時間 2,088 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,536 KB
testcase_01 AC 35 ms
52,576 KB
testcase_02 AC 35 ms
52,692 KB
testcase_03 AC 36 ms
53,000 KB
testcase_04 AC 36 ms
52,820 KB
testcase_05 AC 36 ms
53,800 KB
testcase_06 AC 35 ms
52,400 KB
testcase_07 AC 35 ms
53,772 KB
testcase_08 AC 35 ms
51,888 KB
testcase_09 AC 35 ms
53,852 KB
testcase_10 AC 35 ms
52,456 KB
testcase_11 AC 34 ms
51,964 KB
testcase_12 AC 35 ms
52,484 KB
testcase_13 AC 34 ms
53,084 KB
testcase_14 AC 34 ms
52,740 KB
testcase_15 AC 36 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
if N % K:
    print(-1)
    exit()
if N == 1:
    if K == 1:
        print(1)
    else:
        print(-1)
else:
    d = N // K
    ans = [1] * d + [2] * (N - d)
    print(*ans)
0