結果
問題 | No.48 ロボットの操縦 |
ユーザー | regerege |
提出日時 | 2016-01-12 21:58:17 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 351 ms / 5,000 ms |
コード長 | 409 bytes |
コンパイル時間 | 15,734 ms |
コンパイル使用メモリ | 188,832 KB |
実行使用メモリ | 34,984 KB |
最終ジャッジ日時 | 2024-11-21 18:32:34 |
合計ジャッジ時間 | 24,591 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 324 ms
33,952 KB |
testcase_01 | AC | 310 ms
34,588 KB |
testcase_02 | AC | 324 ms
34,680 KB |
testcase_03 | AC | 311 ms
34,984 KB |
testcase_04 | AC | 351 ms
33,948 KB |
testcase_05 | AC | 350 ms
34,604 KB |
testcase_06 | AC | 321 ms
34,484 KB |
testcase_07 | AC | 320 ms
33,824 KB |
testcase_08 | AC | 330 ms
34,600 KB |
testcase_09 | AC | 316 ms
34,200 KB |
testcase_10 | AC | 321 ms
34,472 KB |
testcase_11 | AC | 334 ms
34,484 KB |
testcase_12 | AC | 321 ms
34,832 KB |
testcase_13 | AC | 307 ms
33,824 KB |
testcase_14 | AC | 321 ms
33,960 KB |
testcase_15 | AC | 341 ms
34,216 KB |
testcase_16 | AC | 316 ms
34,600 KB |
testcase_17 | AC | 320 ms
34,832 KB |
testcase_18 | AC | 310 ms
34,484 KB |
testcase_19 | AC | 317 ms
34,068 KB |
testcase_20 | AC | 314 ms
34,724 KB |
testcase_21 | AC | 316 ms
33,824 KB |
testcase_22 | AC | 317 ms
34,832 KB |
testcase_23 | AC | 316 ms
34,728 KB |
testcase_24 | AC | 317 ms
34,092 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (303 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/
ソースコード
let ``No.48 ロボットの操縦`` () = let X = int <| stdin.ReadLine() let Y = int <| stdin.ReadLine() let L = int <| stdin.ReadLine() let a = if X = 0 && 0 <= Y then 0 elif Y < 0 then 2 else 1 [abs X; abs Y] |> List.map (fun a -> a/L+ (if a % L = 0 then 0 else 1)) |> List.fold (fun s n -> s + n) a |> printfn "%d" ``No.48 ロボットの操縦`` ()