結果

問題 No.1456 Range Xor
ユーザー ID 21712ID 21712
提出日時 2024-12-13 12:20:11
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 11,843 ms
コンパイル使用メモリ 228,232 KB
実行使用メモリ 9,112 KB
最終ジャッジ日時 2024-12-13 12:20:28
合計ジャッジ時間 15,241 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,820 KB
testcase_02 WA -
testcase_03 AC 80 ms
9,112 KB
testcase_04 AC 78 ms
9,112 KB
testcase_05 AC 81 ms
8,984 KB
testcase_06 AC 88 ms
9,108 KB
testcase_07 AC 83 ms
9,108 KB
testcase_08 AC 83 ms
8,984 KB
testcase_09 AC 85 ms
9,112 KB
testcase_10 AC 83 ms
9,112 KB
testcase_11 WA -
testcase_12 AC 7 ms
6,820 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 71 ms
8,984 KB
testcase_16 AC 64 ms
8,544 KB
testcase_17 AC 36 ms
6,820 KB
testcase_18 AC 26 ms
6,820 KB
testcase_19 AC 57 ms
8,600 KB
testcase_20 AC 63 ms
8,540 KB
testcase_21 WA -
testcase_22 AC 55 ms
8,344 KB
testcase_23 WA -
testcase_24 AC 13 ms
6,816 KB
testcase_25 AC 24 ms
6,816 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 19 ms
6,816 KB
testcase_29 WA -
testcase_30 AC 78 ms
8,988 KB
testcase_31 AC 17 ms
6,820 KB
testcase_32 AC 15 ms
6,820 KB
testcase_33 AC 30 ms
6,816 KB
testcase_34 AC 77 ms
8,980 KB
testcase_35 AC 41 ms
6,816 KB
testcase_36 AC 80 ms
9,112 KB
testcase_37 WA -
testcase_38 AC 12 ms
6,820 KB
testcase_39 AC 66 ms
8,596 KB
testcase_40 AC 60 ms
8,540 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 9 ms
6,816 KB
testcase_43 AC 1 ms
6,816 KB
testcase_44 AC 1 ms
6,816 KB
testcase_45 AC 1 ms
6,816 KB
testcase_46 AC 1 ms
6,820 KB
testcase_47 AC 1 ms
6,820 KB
testcase_48 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,k,z int
	Fscan(rd,&n,&k)
	a:=make([]int,n)
	t:=map[int]int{}
	t[0]=-1
	for i:=range a {
		Fscan(rd,&a[i])
		z=z^a[i]
		if _,ok:=t[z]; !ok {
			t[z]=i 
		}
	}
	if z==k {
		Println("Yes")
		return
	}
	z=z^k
	for i,v:=range a{
		z=z^v
		if j,ok:=t[z]; ok && j+1<=i {
			Println("Yes")
			return
		}
	}
	Println("No")	
}
0