結果

問題 No.723 2つの数の和
ユーザー taktak
提出日時 2019-02-22 20:02:51
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 16,641 ms
コンパイル使用メモリ 187,744 KB
実行使用メモリ 79,880 KB
最終ジャッジ日時 2024-11-25 00:19:21
合計ジャッジ時間 21,743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
30,464 KB
testcase_01 AC 64 ms
30,336 KB
testcase_02 AC 64 ms
32,144 KB
testcase_03 AC 217 ms
68,948 KB
testcase_04 AC 260 ms
76,088 KB
testcase_05 AC 246 ms
70,612 KB
testcase_06 AC 254 ms
72,812 KB
testcase_07 AC 165 ms
60,244 KB
testcase_08 AC 169 ms
60,672 KB
testcase_09 AC 265 ms
76,460 KB
testcase_10 AC 165 ms
60,416 KB
testcase_11 AC 83 ms
36,992 KB
testcase_12 AC 183 ms
64,896 KB
testcase_13 AC 262 ms
76,620 KB
testcase_14 AC 119 ms
51,328 KB
testcase_15 AC 165 ms
60,544 KB
testcase_16 AC 203 ms
65,616 KB
testcase_17 AC 264 ms
70,592 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 65 ms
30,164 KB
testcase_21 AC 65 ms
30,464 KB
testcase_22 AC 65 ms
30,208 KB
testcase_23 AC 346 ms
79,880 KB
testcase_24 AC 133 ms
54,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (424 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 #

open System

let solve a x =
  let countMap = 
    a |> Array.countBy id
    |> Map.ofArray
  let countMapSeq = countMap |> Map.toSeq

  countMapSeq |> Seq.map(fun (k, v) ->
    let k' = x - k
    countMap.TryFind k' |> function
    | None -> 0
    | Some c -> v * c)
  |> Seq.sum  

let R() = Console.ReadLine().Split() |> Array.map int

let N, X = 
  let t = R()
  t.[0], t.[1]

let a = R()

solve a X
|> Console.WriteLine
0