結果

問題 No.29 パワーアップ
ユーザー regeregeregerege
提出日時 2016-01-10 18:16:54
言語 F#
(F# 4.0)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 6,771 ms
コンパイル使用メモリ 185,612 KB
実行使用メモリ 32,896 KB
最終ジャッジ日時 2024-09-19 15:57:57
合計ジャッジ時間 10,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
32,896 KB
testcase_01 AC 116 ms
32,512 KB
testcase_02 AC 116 ms
32,768 KB
testcase_03 AC 117 ms
32,896 KB
testcase_04 AC 118 ms
32,636 KB
testcase_05 AC 118 ms
32,640 KB
testcase_06 AC 117 ms
32,380 KB
testcase_07 AC 118 ms
32,384 KB
testcase_08 AC 118 ms
32,896 KB
testcase_09 AC 118 ms
32,768 KB
testcase_10 AC 118 ms
32,768 KB
testcase_11 AC 118 ms
32,640 KB
testcase_12 AC 117 ms
32,640 KB
testcase_13 AC 117 ms
32,896 KB
testcase_14 AC 117 ms
32,768 KB
testcase_15 AC 117 ms
32,896 KB
testcase_16 AC 117 ms
32,512 KB
testcase_17 AC 118 ms
32,768 KB
testcase_18 AC 118 ms
32,380 KB
testcase_19 AC 119 ms
32,640 KB
testcase_20 AC 118 ms
32,768 KB
testcase_21 AC 117 ms
32,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (235 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 ``No.29 パワーアップ`` () =
    let N = int <| stdin.ReadLine()
    Seq.initInfinite (fun _ -> stdin.ReadLine().Split(' '))
    |> Seq.take N
    |> Seq.collect id
    |> Seq.groupBy id
    |> Seq.map (fun (_,s) -> let n = Seq.length s in n/2,n&&&1)
    |> Seq.fold(fun (s1,s2) (n,a) -> s1+n,s2+a) (0,0)
    |> fun (a,b) -> a + (b/4)
    |> printfn "%A"
``No.29 パワーアップ`` ()
0