結果

問題 No.2870 Dice Making
ユーザー 👑 obakyanobakyan
提出日時 2024-09-07 14:00:07
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-07 14:00:10
合計ジャッジ時間 1,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = io.read("*n", "*n")
if n % k ~= 0 then
  print(-1) os.exit()
end
if n == k then
  if n == 1 then
    print(-1)
    os.exit()
  end
end
m = math.floor(n / k)
t = {}
for i = 1, m do
  t[i] = 1
end
for i = m + 1, n do
  t[i] = 2
end
print(table.concat(t, " "))
0