結果

問題 No.482 あなたの名は
ユーザー ichibanshiboriichibanshibori
提出日時 2017-02-11 01:44:00
言語 F#
(F# 4.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,298 bytes
コンパイル時間 9,649 ms
コンパイル使用メモリ 193,376 KB
実行使用メモリ 59,520 KB
最終ジャッジ日時 2024-06-09 11:31:01
合計ジャッジ時間 15,145 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
30,592 KB
testcase_01 AC 68 ms
30,848 KB
testcase_02 AC 72 ms
30,592 KB
testcase_03 AC 73 ms
30,720 KB
testcase_04 AC 70 ms
30,720 KB
testcase_05 AC 73 ms
30,720 KB
testcase_06 AC 70 ms
30,464 KB
testcase_07 AC 71 ms
30,720 KB
testcase_08 AC 77 ms
30,720 KB
testcase_09 AC 73 ms
30,592 KB
testcase_10 AC 74 ms
30,592 KB
testcase_11 AC 75 ms
30,592 KB
testcase_12 AC 76 ms
31,104 KB
testcase_13 AC 75 ms
30,848 KB
testcase_14 AC 75 ms
30,848 KB
testcase_15 AC 131 ms
59,136 KB
testcase_16 AC 126 ms
59,520 KB
testcase_17 AC 123 ms
59,136 KB
testcase_18 AC 127 ms
59,136 KB
testcase_19 AC 129 ms
59,392 KB
testcase_20 AC 125 ms
59,008 KB
testcase_21 AC 124 ms
59,136 KB
testcase_22 AC 127 ms
59,520 KB
testcase_23 AC 126 ms
59,392 KB
testcase_24 AC 137 ms
59,136 KB
testcase_25 AC 130 ms
59,136 KB
testcase_26 AC 128 ms
59,136 KB
testcase_27 AC 127 ms
59,264 KB
testcase_28 AC 121 ms
59,136 KB
testcase_29 AC 122 ms
59,136 KB
testcase_30 AC 75 ms
30,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (276 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: int64) 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 >= (int64 len_loop) && (k - (int64 len_loop)) % 2L = 0L

let () =
    let _, k = stdin.ReadLine()
               |> fun s -> s.Split()
               |> Array.map int64
               |> 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