結果

問題 No.172 UFOを捕まえろ
ユーザー regeregeregerege
提出日時 2016-10-02 04:03:11
言語 F#
(F# 4.0)
結果
AC  
実行時間 358 ms / 5,000 ms
コード長 166 bytes
コンパイル時間 10,122 ms
コンパイル使用メモリ 186,456 KB
実行使用メモリ 34,928 KB
最終ジャッジ日時 2024-11-21 12:54:15
合計ジャッジ時間 19,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
34,000 KB
testcase_01 AC 348 ms
34,928 KB
testcase_02 AC 358 ms
34,772 KB
testcase_03 AC 350 ms
34,552 KB
testcase_04 AC 347 ms
34,412 KB
testcase_05 AC 347 ms
34,548 KB
testcase_06 AC 349 ms
34,684 KB
testcase_07 AC 349 ms
34,800 KB
testcase_08 AC 347 ms
34,556 KB
testcase_09 AC 351 ms
34,912 KB
testcase_10 AC 345 ms
34,916 KB
testcase_11 AC 344 ms
34,764 KB
testcase_12 AC 344 ms
34,280 KB
testcase_13 AC 346 ms
34,672 KB
testcase_14 AC 347 ms
34,548 KB
testcase_15 AC 349 ms
34,284 KB
testcase_16 AC 347 ms
34,776 KB
testcase_17 AC 358 ms
34,132 KB
testcase_18 AC 346 ms
34,548 KB
testcase_19 AC 349 ms
34,804 KB
testcase_20 AC 351 ms
34,672 KB
testcase_21 AC 349 ms
34,540 KB
testcase_22 AC 350 ms
34,764 KB
testcase_23 AC 349 ms
34,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (282 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 #

let args = stdin.ReadLine().Split(' ')
let x = int args.[0]
let y = int args.[1]
let r = float args.[2]
let P = abs x +  abs y + int(ceil(r * sqrt 2.))
printfn "%d" P
0