結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,820 KB
testcase_02 WA -
testcase_03 AC 87 ms
8,984 KB
testcase_04 AC 85 ms
8,984 KB
testcase_05 AC 88 ms
8,984 KB
testcase_06 AC 89 ms
9,108 KB
testcase_07 AC 87 ms
9,108 KB
testcase_08 AC 85 ms
9,108 KB
testcase_09 AC 85 ms
8,980 KB
testcase_10 AC 84 ms
9,112 KB
testcase_11 WA -
testcase_12 AC 7 ms
6,820 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 72 ms
8,856 KB
testcase_16 AC 66 ms
8,540 KB
testcase_17 AC 37 ms
6,820 KB
testcase_18 AC 26 ms
6,820 KB
testcase_19 AC 61 ms
8,604 KB
testcase_20 AC 67 ms
8,468 KB
testcase_21 WA -
testcase_22 AC 58 ms
8,340 KB
testcase_23 WA -
testcase_24 AC 13 ms
6,820 KB
testcase_25 AC 26 ms
6,816 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 20 ms
6,816 KB
testcase_29 WA -
testcase_30 AC 85 ms
9,112 KB
testcase_31 AC 18 ms
6,820 KB
testcase_32 AC 16 ms
6,816 KB
testcase_33 AC 33 ms
6,816 KB
testcase_34 AC 81 ms
8,984 KB
testcase_35 AC 41 ms
6,820 KB
testcase_36 AC 83 ms
9,108 KB
testcase_37 WA -
testcase_38 AC 14 ms
6,820 KB
testcase_39 AC 67 ms
8,600 KB
testcase_40 AC 62 ms
8,468 KB
testcase_41 AC 3 ms
6,820 KB
testcase_42 AC 9 ms
6,816 KB
testcase_43 AC 2 ms
6,820 KB
testcase_44 AC 1 ms
6,816 KB
testcase_45 AC 1 ms
6,820 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,816 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{}
	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
		}
		if z==0 {
			Println("Yes")
			return
		}
	}
	Println("No")	
}
0