結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,488 KB
testcase_01 AC 35 ms
53,492 KB
testcase_02 AC 34 ms
53,544 KB
testcase_03 AC 33 ms
53,160 KB
testcase_04 AC 34 ms
53,208 KB
testcase_05 AC 37 ms
52,556 KB
testcase_06 AC 34 ms
53,492 KB
testcase_07 AC 34 ms
53,360 KB
testcase_08 AC 38 ms
52,356 KB
testcase_09 AC 34 ms
52,136 KB
testcase_10 AC 33 ms
51,748 KB
testcase_11 AC 45 ms
51,820 KB
testcase_12 AC 35 ms
52,288 KB
testcase_13 AC 35 ms
52,628 KB
testcase_14 AC 35 ms
52,616 KB
testcase_15 AC 34 ms
52,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())

if N%K == 0:
    ans = []
    for i in range(N//K):
        ans.append(1)
    for i in range(N-N//K):
        ans.append(2)
    print(*ans)
else:
    print(-1)
0