結果

問題 No.740 幻の木
ユーザー 👑 obakyanobakyan
提出日時 2019-04-14 17:32:48
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 5,152 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 09:48:08
合計ジャッジ時間 704 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p,q = io.read("*n", "*n", "*n", "*n")
year = m * (12 + q)
quot = math.floor(n / year)
rem = n % year
cur = 0
while(0 < rem) do
  cur = cur + 1
  if(cur == 13) then cur = 1 end
  if(p <= cur and cur <= p + q - 1) then
    rem = rem - m * 2
  else
    rem = rem - m
  end
end
print(quot * 12 + cur)
0