結果
問題 | No.638 Sum of "not power of 2" |
ユーザー | tak |
提出日時 | 2018-04-23 16:12:11 |
言語 | F# (F# 4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 510 bytes |
コンパイル時間 | 13,503 ms |
コンパイル使用メモリ | 190,384 KB |
実行使用メモリ | 483,124 KB |
最終ジャッジ日時 | 2024-06-27 14:06:01 |
合計ジャッジ時間 | 16,548 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 82 ms
34,432 KB |
testcase_01 | AC | 81 ms
36,608 KB |
testcase_02 | AC | 81 ms
30,816 KB |
testcase_03 | AC | 84 ms
31,104 KB |
testcase_04 | AC | 354 ms
34,816 KB |
testcase_05 | AC | 83 ms
30,828 KB |
testcase_06 | AC | 351 ms
35,052 KB |
testcase_07 | AC | 350 ms
34,976 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (294 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/
ソースコード
let isEnable N = let powOf2Set = let powOf2Seq = Seq.unfold (fun x -> if x>100000000L then None else Some(x,x*2L)) 1L powOf2Seq |> Set.ofSeq let lis = [1L .. N-1L] 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"