結果

問題 No.781 円周上の格子点の数え上げ
ユーザー taktak
提出日時 2019-03-06 16:10:54
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 402 bytes
コンパイル時間 9,256 ms
コンパイル使用メモリ 186,312 KB
実行使用メモリ 62,240 KB
最終ジャッジ日時 2024-06-23 14:36:05
合計ジャッジ時間 12,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
32,768 KB
testcase_01 AC 60 ms
36,760 KB
testcase_02 AC 58 ms
29,440 KB
testcase_03 AC 59 ms
29,820 KB
testcase_04 AC 60 ms
29,656 KB
testcase_05 AC 58 ms
29,312 KB
testcase_06 AC 59 ms
29,568 KB
testcase_07 AC 59 ms
29,656 KB
testcase_08 AC 60 ms
29,696 KB
testcase_09 AC 60 ms
29,568 KB
testcase_10 AC 284 ms
54,016 KB
testcase_11 AC 878 ms
55,040 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (278 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 f r =
  let sqrt' = float >> sqrt >> int
  let isSquare x =
      let t = sqrt' x
      t * t = x
  [ for i in 1 .. sqrt' r -> r - i * i ]
  |> List.where isSquare
  |> List.length
  |> (*) 4
  
let solve min max =
  [ for i in min .. max -> f i ]
  |> List.max
  
let X, Y =
    let t = Console.ReadLine().Split() |> Array.map int
    t.[0], t.[1]
    
solve X Y
|> Console.WriteLine
0