結果

問題 No.192 合成数
ユーザー regeregeregerege
提出日時 2017-04-17 21:29:38
言語 F#
(F# 4.0)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 15,758 ms
コンパイル使用メモリ 184,948 KB
実行使用メモリ 34,776 KB
最終ジャッジ日時 2024-06-27 02:10:43
合計ジャッジ時間 25,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
34,772 KB
testcase_01 AC 335 ms
34,016 KB
testcase_02 AC 333 ms
34,396 KB
testcase_03 AC 332 ms
34,016 KB
testcase_04 AC 334 ms
34,776 KB
testcase_05 AC 341 ms
34,320 KB
testcase_06 AC 343 ms
34,088 KB
testcase_07 AC 340 ms
34,340 KB
testcase_08 AC 340 ms
33,836 KB
testcase_09 AC 332 ms
34,776 KB
testcase_10 AC 342 ms
34,212 KB
testcase_11 AC 338 ms
34,532 KB
testcase_12 AC 339 ms
34,220 KB
testcase_13 AC 332 ms
33,756 KB
testcase_14 AC 342 ms
34,132 KB
testcase_15 AC 335 ms
34,760 KB
testcase_16 AC 340 ms
34,220 KB
testcase_17 AC 343 ms
34,216 KB
testcase_18 AC 345 ms
34,504 KB
testcase_19 AC 342 ms
34,072 KB
testcase_20 AC 341 ms
34,352 KB
testcase_21 AC 339 ms
34,524 KB
testcase_22 AC 336 ms
34,776 KB
testcase_23 AC 341 ms
34,332 KB
testcase_24 AC 335 ms
34,260 KB
testcase_25 AC 345 ms
34,216 KB
testcase_26 AC 339 ms
33,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (415 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 N = stdin.ReadLine() |> int
if N % 2 = 0 then N
else
    Seq.initInfinite ((+)1 >> (*)2)
    |> Seq.map (fun n -> n*n)
    |> Seq.filter (fun n -> N-100 <= n && n <= N+100)
    |> Seq.head
|> printfn "%d"
0