結果

問題 No.23 技の選択
ユーザー むらためむらため
提出日時 2019-01-31 19:25:10
言語 Nim
(2.2.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 503 bytes
コンパイル時間 2,404 ms
コンパイル使用メモリ 61,164 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-01 11:14:17
合計ジャッジ時間 3,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]

ソースコード

diff #

import sequtils
template `min=`*(x,y) = x = min(x,y)
proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .}
proc scan(): int =
  while true:
    let k = getchar_unlocked()
    if k < '0': return
    result = 10 * result + k.ord - '0'.ord

let h = scan()
let a = scan()
let d = scan()
var ans = 1e10
for i in 0..<h: # i 回通常攻撃
  if h - a * i <= 0 :
    ans .min= ((h-1) div a + 1).float
    break
  ans .min= i.float + ((h - a * i - 1) div d + 1).float * 1.5
echo ans
0