結果

問題 No.482 あなたの名は
ユーザー taktak
提出日時 2018-04-23 23:59:55
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 9,093 ms
コンパイル使用メモリ 192,280 KB
実行使用メモリ 59,408 KB
最終ジャッジ日時 2024-06-27 14:10:45
合計ジャッジ時間 12,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
30,976 KB
testcase_01 AC 75 ms
30,720 KB
testcase_02 AC 75 ms
30,844 KB
testcase_03 AC 77 ms
30,720 KB
testcase_04 AC 77 ms
30,720 KB
testcase_05 AC 75 ms
30,848 KB
testcase_06 AC 76 ms
30,848 KB
testcase_07 WA -
testcase_08 AC 78 ms
30,976 KB
testcase_09 AC 79 ms
31,488 KB
testcase_10 AC 80 ms
31,608 KB
testcase_11 AC 80 ms
31,488 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 81 ms
31,360 KB
testcase_15 WA -
testcase_16 AC 144 ms
57,088 KB
testcase_17 AC 141 ms
57,216 KB
testcase_18 AC 142 ms
57,116 KB
testcase_19 WA -
testcase_20 AC 141 ms
57,204 KB
testcase_21 WA -
testcase_22 AC 142 ms
57,124 KB
testcase_23 WA -
testcase_24 AC 142 ms
57,088 KB
testcase_25 WA -
testcase_26 AC 143 ms
57,216 KB
testcase_27 WA -
testcase_28 AC 142 ms
57,336 KB
testcase_29 WA -
testcase_30 AC 76 ms
30,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (263 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 read() = stdin.ReadLine().Split() |> Array.map int64 
let N,K = let t = read() in t.[0],t.[1]
let D   = read()
 
D
|> Array.zip [|1L..N|]
|> Array.filter (fun tup -> fst tup <> snd tup)
|> Array.length
|> fun x -> max (x-1) 0 
|> int64
|> function | x when x<=K && (K-x)%2L=0L -> "YES" | _ -> "NO"
|> printfn "%s"                                   
0