結果

問題 No.638 Sum of "not power of 2"
ユーザー taktak
提出日時 2018-04-23 16:24:47
言語 F#
(F# 4.0)
結果
AC  
実行時間 351 ms / 1,000 ms
コード長 532 bytes
コンパイル時間 8,734 ms
コンパイル使用メモリ 184,980 KB
実行使用メモリ 35,368 KB
最終ジャッジ日時 2024-06-27 14:06:55
合計ジャッジ時間 10,698 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
31,232 KB
testcase_01 AC 84 ms
31,088 KB
testcase_02 AC 80 ms
31,216 KB
testcase_03 AC 81 ms
30,976 KB
testcase_04 AC 351 ms
35,368 KB
testcase_05 AC 81 ms
31,104 KB
testcase_06 AC 349 ms
34,892 KB
testcase_07 AC 347 ms
34,984 KB
testcase_08 AC 348 ms
34,888 KB
testcase_09 AC 345 ms
34,900 KB
testcase_10 AC 344 ms
34,936 KB
testcase_11 AC 349 ms
34,920 KB
testcase_12 AC 81 ms
31,360 KB
testcase_13 AC 349 ms
35,268 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (246 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 isEnable N =
    let powOf2Set =
        let powOf2Seq = Seq.unfold (fun x -> if x>(10.0**18.0|>int64) then None else Some(x,x*2L)) 1L     
        powOf2Seq |> Set.ofSeq
    let lis = [3L .. (min (N-1L) 130L)]
    lis |> List.tryFind(fun x -> 
        let y = N-x        
        not (powOf2Set.Contains x) && not (powOf2Set.Contains y))    
        
let N = stdin.ReadLine() |> int64
        
N
|> isEnable
|> function
    | None    -> sprintf "-1"
    | Some(x) -> sprintf "%i %i" x (N-x)
|> printfn "%s"                     
0