結果

問題 No.2870 Dice Making
ユーザー ra5anchorra5anchor
提出日時 2024-09-06 21:25:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 54,560 KB
最終ジャッジ日時 2024-09-06 21:25:11
合計ジャッジ時間 2,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,124 KB
testcase_01 WA -
testcase_02 AC 35 ms
53,380 KB
testcase_03 AC 36 ms
52,132 KB
testcase_04 AC 38 ms
52,400 KB
testcase_05 AC 33 ms
52,320 KB
testcase_06 AC 36 ms
52,408 KB
testcase_07 AC 36 ms
52,632 KB
testcase_08 AC 37 ms
53,344 KB
testcase_09 AC 35 ms
53,008 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
if N % K != 0:
    print(-1)
a = N // K
ans = [1]*a
for i in range(N-a):
    ans.append(2)
print(*ans)
0