結果

問題 No.1808 Fullgold Alchemist
ユーザー Masaki KitaguchiMasaki Kitaguchi
提出日時 2022-01-15 05:40:39
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 899 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 18,504 KB
最終ジャッジ日時 2024-11-21 00:34:26
合計ジャッジ時間 71,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,764 KB
testcase_01 AC 1 ms
11,556 KB
testcase_02 AC 0 ms
11,552 KB
testcase_03 AC 1 ms
13,760 KB
testcase_04 AC 1 ms
11,684 KB
testcase_05 AC 35 ms
11,680 KB
testcase_06 TLE -
testcase_07 AC 44 ms
11,556 KB
testcase_08 TLE -
testcase_09 AC 136 ms
11,428 KB
testcase_10 AC 53 ms
11,556 KB
testcase_11 TLE -
testcase_12 AC 49 ms
13,764 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 2 ms
10,016 KB
testcase_18 TLE -
testcase_19 AC 139 ms
9,764 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1 ms
13,764 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n")
local m = io.read("*n")
local a = {}; do
  for i = 1, n do
    a[i] = io.read("*n")
  end
end

local ans = (function ()
  local gold = 0; do
    while true do
      if a[1] < m then
        break
      end

      local lack = false
      local generated = false
      do
        local i = 1
        for j = 2, n do
          if a[j] < m then
            if a[i] > m then
              a[i] = a[i] - 1
              a[j] = a[j] + 1
              generated = true
              break
            else
              lack = true
              break
            end
          end
          if a[j] > a[i] then
            i = j
          end
        end
      end

      if lack then
        break
      end

      if not generated then
        for i = 1, n do
          a[i] = a[i] - m
        end
        gold = gold + 1
      end
    end
  end
  return gold
end)()

print(ans)
0