結果

問題 No.482 あなたの名は
ユーザー fmhrfmhr
提出日時 2017-02-10 23:02:04
言語 Go
(1.23.4)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 12,237 ms
コンパイル使用メモリ 227,104 KB
実行使用メモリ 10,156 KB
最終ジャッジ日時 2024-12-28 09:07:36
合計ジャッジ時間 35,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 WA -
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 5 ms
6,820 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 4 ms
6,816 KB
testcase_11 AC 4 ms
6,816 KB
testcase_12 AC 5 ms
6,816 KB
testcase_13 AC 4 ms
6,816 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,417 ms
10,028 KB
testcase_17 AC 1,410 ms
10,028 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,467 ms
10,028 KB
testcase_25 AC 1,407 ms
10,028 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,420 ms
10,028 KB
testcase_29 AC 1,395 ms
10,032 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

func main() {
	var N, K int
	fmt.Scan(&N, &K)
	D := make([]int, N)
	d := make([]int, N)
	for i := 0; i < N; i++ {
		fmt.Scan(&D[i])
		d[i] = D[i]
	}
	sort.Ints(d)
	var cnt int
	for i := 0; i < N; i++ {
		if D[i] != d[i] {
			cnt++
		}
	}
	cnt /= 2
	// fmt.Println(cnt, K)
	// fmt.Println(cnt%2, K%2)
	if cnt%2 == K%2 {
		fmt.Println("YES")
	} else {
		fmt.Println("NO")
	}
}
0