結果

問題 No.1006 Share an Integer
ユーザー ikdikd
提出日時 2020-05-04 22:32:22
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 752 bytes
コンパイル時間 13,674 ms
コンパイル使用メモリ 195,236 KB
実行使用メモリ 82,032 KB
最終ジャッジ日時 2024-06-25 01:41:35
合計ジャッジ時間 21,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 363 ms
39,556 KB
testcase_01 AC 360 ms
36,312 KB
testcase_02 AC 361 ms
35,736 KB
testcase_03 AC 352 ms
35,968 KB
testcase_04 AC 358 ms
35,756 KB
testcase_05 AC 355 ms
35,700 KB
testcase_06 AC 364 ms
35,864 KB
testcase_07 AC 358 ms
35,252 KB
testcase_08 AC 363 ms
36,316 KB
testcase_09 AC 361 ms
36,368 KB
testcase_10 AC 365 ms
36,512 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (497 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 #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let x = stdin.ReadLine() |> int

    let d n =
        let mutable i = 1
        let mutable res = 0
        while i * i <= n do
            if n % i = 0 then
                if i * i = n then res <- res + 1 else res <- res + 2
            i <- i + 1
        res

    let f n = n - d n
    seq {
        for a = 1 to x - 1 do
            let b = x - a
            if (abs a - b) <= 320 then yield (abs (f a - f b), a, b)
    }
    |> Seq.groupBy (fun (y, _, _) -> y)
    |> Seq.minBy (fun (y, s) -> y)
    |> snd
    |> Seq.map (fun (y, a, b) -> (a, b))
    |> Seq.sort
    |> Seq.iter (fun (a, b) -> printfn "%d %d" a b)
    0 // return an integer exit code
0