結果
| 問題 | 
                            No.1006 Share an Integer
                             | 
                    
| コンテスト | |
| ユーザー | 
                             ikd
                         | 
                    
| 提出日時 | 2020-05-04 22:50:11 | 
| 言語 | F#  (F# 4.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 457 ms / 2,000 ms | 
| コード長 | 892 bytes | 
| コンパイル時間 | 12,533 ms | 
| コンパイル使用メモリ | 196,568 KB | 
| 実行使用メモリ | 37,300 KB | 
| 最終ジャッジ日時 | 2024-06-25 02:10:48 | 
| 合計ジャッジ時間 | 22,496 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 19 | 
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (302 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/
ソースコード
// 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)) <= (x
                               |> float
                               |> sqrt
                               |> int) * 2 + 10
            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
            
            
            
        
            
ikd