結果

問題 No.482 あなたの名は
ユーザー tsuchinagatsuchinaga
提出日時 2019-03-07 10:21:47
言語 Go
(1.22.1)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 11,553 ms
コンパイル使用メモリ 202,692 KB
実行使用メモリ 5,616 KB
最終ジャッジ日時 2023-09-05 19:21:06
合計ジャッジ時間 13,235 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 18 ms
5,616 KB
testcase_16 AC 18 ms
5,612 KB
testcase_17 AC 18 ms
5,612 KB
testcase_18 AC 18 ms
5,608 KB
testcase_19 AC 18 ms
5,612 KB
testcase_20 AC 18 ms
5,608 KB
testcase_21 AC 18 ms
5,612 KB
testcase_22 AC 18 ms
5,608 KB
testcase_23 AC 18 ms
5,608 KB
testcase_24 AC 18 ms
5,612 KB
testcase_25 AC 18 ms
5,612 KB
testcase_26 AC 18 ms
5,608 KB
testcase_27 AC 18 ms
5,608 KB
testcase_28 AC 18 ms
5,612 KB
testcase_29 AC 15 ms
5,612 KB
testcase_30 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
)

func main() {
	var n, k int
	_, _ = fmt.Scan(&n, &k)
	l := make([]int, n)

	sc := bufio.NewScanner(os.Stdin)
	sc.Split(bufio.ScanWords)

	for i := range l {
		sc.Scan()
		l[i], _ = strconv.Atoi(sc.Text())
	}

	// sort.Slice(l, func(i, j int) bool {
	// 	if l[i] < l[j] {
	// 		k--
	// 		return true
	// 	}
	// 	return false
	// })
	for i := 0; i < n; i++ {
		for {
			if i+1 == l[i] {
				break
			}
			l[i], l[l[i]-1] = l[l[i]-1], l[i]
			k--
		}
	}

	// fmt.Println(k, l)

	if k >= 0 && k%2 == 0 {
		fmt.Println("YES")
	} else {
		fmt.Println("NO")
	}
}
0