結果
問題 | No.482 あなたの名は |
ユーザー | tak |
提出日時 | 2018-04-24 09:28:00 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 762 bytes |
コンパイル時間 | 15,182 ms |
コンパイル使用メモリ | 202,820 KB |
実行使用メモリ | 54,004 KB |
最終ジャッジ日時 | 2024-06-27 15:51:16 |
合計ジャッジ時間 | 20,173 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
30,720 KB |
testcase_01 | AC | 71 ms
30,464 KB |
testcase_02 | AC | 72 ms
30,720 KB |
testcase_03 | WA | - |
testcase_04 | AC | 71 ms
30,720 KB |
testcase_05 | AC | 71 ms
30,720 KB |
testcase_06 | AC | 71 ms
30,592 KB |
testcase_07 | AC | 72 ms
30,720 KB |
testcase_08 | WA | - |
testcase_09 | AC | 74 ms
30,848 KB |
testcase_10 | AC | 74 ms
30,848 KB |
testcase_11 | AC | 75 ms
30,848 KB |
testcase_12 | WA | - |
testcase_13 | AC | 72 ms
30,968 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 116 ms
51,852 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 115 ms
51,836 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 116 ms
51,844 KB |
testcase_24 | AC | 116 ms
51,852 KB |
testcase_25 | AC | 117 ms
51,856 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 116 ms
52,112 KB |
testcase_29 | AC | 114 ms
51,840 KB |
testcase_30 | AC | 74 ms
30,592 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (368 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/
ソースコード
let stepCountToSort (arr:int[]) = let cnt = ref 0 let swap a b = let t = arr.[a] arr.[a] <- arr.[b] arr.[b] <- t for i in 1..arr |> Array.length do let idx = i-1 if i <> arr.[idx] then //arr.[idx]が本来あるべき位置 let rightIdx = arr.[idx]-1 swap idx rightIdx incr cnt cnt.Value let N,K = let t = stdin.ReadLine().Split() in t.[0] |> int, t.[1] |> int64 let D = stdin.ReadLine().Split() |> Array.map int D |> stepCountToSort |> function | 0 -> "YES" | x -> let x = x |> int64 if x<=K && (K-x)%2L=0L then "YES" else "NO" |> printfn "%s"