結果

問題 No.216 FAC
ユーザー ichibanshiboriichibanshibori
提出日時 2017-05-07 21:23:13
言語 F#
(F# 4.0)
結果
AC  
実行時間 98 ms / 1,000 ms
コード長 945 bytes
コンパイル時間 13,090 ms
コンパイル使用メモリ 184,764 KB
実行使用メモリ 32,000 KB
最終ジャッジ日時 2024-09-14 14:52:00
合計ジャッジ時間 16,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
31,744 KB
testcase_01 AC 89 ms
31,872 KB
testcase_02 AC 98 ms
31,616 KB
testcase_03 AC 90 ms
32,000 KB
testcase_04 AC 90 ms
31,744 KB
testcase_05 AC 90 ms
31,488 KB
testcase_06 AC 90 ms
31,584 KB
testcase_07 AC 80 ms
30,816 KB
testcase_08 AC 91 ms
31,488 KB
testcase_09 AC 89 ms
31,872 KB
testcase_10 AC 89 ms
31,488 KB
testcase_11 AC 88 ms
31,744 KB
testcase_12 AC 88 ms
31,744 KB
testcase_13 AC 90 ms
31,744 KB
testcase_14 AC 91 ms
31,872 KB
testcase_15 AC 89 ms
31,744 KB
testcase_16 AC 90 ms
31,872 KB
testcase_17 AC 89 ms
31,744 KB
testcase_18 AC 88 ms
31,744 KB
testcase_19 AC 89 ms
31,600 KB
testcase_20 AC 90 ms
31,744 KB
testcase_21 AC 90 ms
31,488 KB
testcase_22 AC 92 ms
31,744 KB
testcase_23 AC 90 ms
31,616 KB
testcase_24 AC 91 ms
31,488 KB
testcase_25 AC 90 ms
31,744 KB
testcase_26 AC 90 ms
31,728 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (535 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 solve a_seq b_seq =
    let ab_seq = Seq.zip a_seq b_seq
    let other_score =
        Seq.filter (fun (a, b) -> b <> 0) ab_seq
        |> fun sq ->
            if Seq.isEmpty sq then
                0
            else
                sq
                |> Seq.groupBy (fun (a, b) -> b)
                |> Seq.map (
                    fun (b, ab_seq) -> Seq.sumBy (fun (a, b) -> a) ab_seq)
                |> Seq.maxBy id
    let k_score =
        Seq.filter (fun (a, b) -> b = 0) ab_seq
        |> fun sq ->
            if Seq.isEmpty sq then
                0
            else
                sq
                |> Seq.sumBy (fun (a, b) -> a)
    if k_score >= other_score then
        "YES"
    else
        "NO"

let () =
    let _ = stdin.ReadLine()
    let a_lst = stdin.ReadLine().Split()
                |> Seq.map int
    let b_lst = stdin.ReadLine().Split()
                |> Seq.map int
    solve a_lst b_lst
    |> printfn "%s"
0