結果
問題 | No.98 円を描こう |
ユーザー | regerege |
提出日時 | 2016-04-04 21:33:37 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 317 ms / 5,000 ms |
コード長 | 179 bytes |
コンパイル時間 | 7,329 ms |
コンパイル使用メモリ | 192,908 KB |
実行使用メモリ | 34,524 KB |
最終ジャッジ日時 | 2024-10-04 00:54:36 |
合計ジャッジ時間 | 9,582 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 297 ms
34,448 KB |
testcase_01 | AC | 306 ms
33,812 KB |
testcase_02 | AC | 298 ms
34,468 KB |
testcase_03 | AC | 297 ms
34,468 KB |
testcase_04 | AC | 294 ms
34,432 KB |
testcase_05 | AC | 301 ms
34,464 KB |
testcase_06 | AC | 297 ms
34,524 KB |
testcase_07 | AC | 296 ms
34,484 KB |
testcase_08 | AC | 301 ms
34,164 KB |
testcase_09 | AC | 317 ms
33,912 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (259 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 a = Array.map decimal <| stdin.ReadLine().Split(' ') let x,y = a.[0],a.[1] if x = 0M || y = 0M then int(max x y * 2M + 1M) else int(sqrt(float(x*x+y*y))*2.)+1 |> printfn "%d"