結果

問題 No.48 ロボットの操縦
ユーザー kuuso1kuuso1
提出日時 2016-08-18 19:14:36
言語 F#
(F# 4.0)
結果
AC  
実行時間 344 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 16,962 ms
コンパイル使用メモリ 188,740 KB
実行使用メモリ 34,732 KB
最終ジャッジ日時 2024-11-21 18:47:33
合計ジャッジ時間 25,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
34,616 KB
testcase_01 AC 334 ms
34,588 KB
testcase_02 AC 334 ms
34,484 KB
testcase_03 AC 334 ms
34,612 KB
testcase_04 AC 333 ms
34,732 KB
testcase_05 AC 332 ms
34,612 KB
testcase_06 AC 334 ms
34,488 KB
testcase_07 AC 344 ms
34,228 KB
testcase_08 AC 334 ms
33,936 KB
testcase_09 AC 334 ms
34,616 KB
testcase_10 AC 334 ms
34,192 KB
testcase_11 AC 335 ms
33,800 KB
testcase_12 AC 334 ms
34,360 KB
testcase_13 AC 334 ms
34,484 KB
testcase_14 AC 333 ms
34,612 KB
testcase_15 AC 340 ms
34,608 KB
testcase_16 AC 334 ms
34,456 KB
testcase_17 AC 341 ms
33,916 KB
testcase_18 AC 333 ms
34,184 KB
testcase_19 AC 332 ms
33,676 KB
testcase_20 AC 332 ms
34,484 KB
testcase_21 AC 333 ms
34,356 KB
testcase_22 AC 335 ms
34,360 KB
testcase_23 AC 335 ms
34,048 KB
testcase_24 AC 333 ms
33,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (688 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
type Sol() =
    member this.Solve() = 
        let X = stdin.ReadLine() |> int
        let Y = stdin.ReadLine() |> int
        let L = stdin.ReadLine() |> int
        
        let mutable ans = 0
        ans <- if (Y >= 0) && (X = 0) then 0
               elif (Y >= 0) then 1
               else 2
        
        let aX = abs X
        let aY = abs Y
        
        ans <- ans + aX / L + (if (aX % L) = 0 then 0 else 1)
        ans <- ans + aY / L + (if (aY % L) = 0 then 0 else 1)
        
        printfn "%d" ans
        
let mySol = new Sol()
mySol.Solve()
0