結果

問題 No.482 あなたの名は
ユーザー ichibanshiboriichibanshibori
提出日時 2017-02-11 01:37:01
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 1,270 bytes
コンパイル時間 10,694 ms
コンパイル使用メモリ 191,872 KB
実行使用メモリ 59,320 KB
最終ジャッジ日時 2024-06-09 08:03:18
合計ジャッジ時間 15,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
30,588 KB
testcase_01 AC 61 ms
30,464 KB
testcase_02 AC 64 ms
30,592 KB
testcase_03 AC 62 ms
30,592 KB
testcase_04 AC 63 ms
30,544 KB
testcase_05 AC 62 ms
30,564 KB
testcase_06 AC 63 ms
30,464 KB
testcase_07 AC 63 ms
30,840 KB
testcase_08 AC 61 ms
30,848 KB
testcase_09 AC 65 ms
30,464 KB
testcase_10 AC 64 ms
30,588 KB
testcase_11 AC 63 ms
30,820 KB
testcase_12 AC 61 ms
30,848 KB
testcase_13 AC 61 ms
30,720 KB
testcase_14 AC 61 ms
30,976 KB
testcase_15 AC 109 ms
59,320 KB
testcase_16 AC 111 ms
59,064 KB
testcase_17 AC 107 ms
59,264 KB
testcase_18 AC 108 ms
59,264 KB
testcase_19 AC 107 ms
59,196 KB
testcase_20 AC 108 ms
59,076 KB
testcase_21 AC 113 ms
59,076 KB
testcase_22 AC 110 ms
59,072 KB
testcase_23 AC 109 ms
59,068 KB
testcase_24 AC 107 ms
59,136 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (380 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 k darr =
    let len_darr = Array.length darr
    let chk_arr = Array.create len_darr false
    
    let rec get_len_loop start current result =
        chk_arr.[current] <- true

        let next = darr.[current]
        let result = current::result

        //eprintfn "get_len_loop: %A" (start, current, result)

        if next = start then (List.length result) - 1
        else
            get_len_loop start next result
    
    let rec get_len_loop_sum idx result =
        //eprintfn "get_len_loop_sum: %A" (idx, result)

        if idx >= len_darr then result
        else
            if chk_arr.[idx] then get_len_loop_sum (idx + 1) result
            else
                let len_loop = get_len_loop idx idx []
                get_len_loop_sum (idx + 1) (result + len_loop)

    let len_loop = get_len_loop_sum 0 0

    k >= len_loop && (k - len_loop) % 2 = 0

let () =
    let _, k = stdin.ReadLine()
               |> fun s -> s.Split()
               |> Array.map int
               |> fun arr -> (arr.[0], arr.[1])
    let darr = stdin.ReadLine()
               |> fun s -> s.Split()
               |> Array.map int
               |> Array.map (( + ) -1)
    
    solve k darr
    |> function | true -> "YES" | false -> "NO"
    |> printfn "%s"
0