結果

問題 No.98 円を描こう
ユーザー hum_ophum_op
提出日時 2016-04-22 23:31:56
言語 F#
(F# 4.0)
結果
AC  
実行時間 303 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 8,129 ms
コンパイル使用メモリ 194,712 KB
実行使用メモリ 36,132 KB
最終ジャッジ日時 2024-10-04 15:10:09
合計ジャッジ時間 11,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
35,748 KB
testcase_01 AC 300 ms
35,872 KB
testcase_02 AC 298 ms
36,132 KB
testcase_03 AC 299 ms
35,972 KB
testcase_04 AC 299 ms
36,120 KB
testcase_05 AC 302 ms
35,840 KB
testcase_06 AC 302 ms
36,000 KB
testcase_07 AC 303 ms
35,752 KB
testcase_08 AC 300 ms
35,868 KB
testcase_09 AC 299 ms
35,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (217 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

let No98 () =
    let IN = Console.ReadLine().Split(' ')
    let x, y = Double.Parse IN.[0], Double.Parse IN.[1]

    let d = sqrt(x ** 2. + y ** 2.) * 2. + 1.
    printfn "%d" <| int d
    ()

No98 ()
0