結果

問題 No.1456 Range Xor
ユーザー ID 21712ID 21712
提出日時 2024-12-13 12:26:21
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 11,594 ms
コンパイル使用メモリ 223,028 KB
実行使用メモリ 8,984 KB
最終ジャッジ日時 2024-12-13 12:26:38
合計ジャッジ時間 15,418 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 89 ms
8,832 KB
testcase_04 AC 86 ms
8,832 KB
testcase_05 AC 86 ms
8,832 KB
testcase_06 AC 87 ms
8,832 KB
testcase_07 AC 83 ms
8,832 KB
testcase_08 AC 86 ms
8,832 KB
testcase_09 AC 88 ms
8,832 KB
testcase_10 AC 87 ms
8,832 KB
testcase_11 WA -
testcase_12 AC 7 ms
5,248 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 78 ms
8,704 KB
testcase_16 AC 64 ms
8,320 KB
testcase_17 AC 38 ms
5,632 KB
testcase_18 AC 26 ms
5,248 KB
testcase_19 AC 58 ms
8,192 KB
testcase_20 AC 65 ms
8,320 KB
testcase_21 WA -
testcase_22 AC 55 ms
8,320 KB
testcase_23 WA -
testcase_24 AC 13 ms
5,248 KB
testcase_25 AC 25 ms
5,248 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 19 ms
5,248 KB
testcase_29 WA -
testcase_30 AC 82 ms
8,832 KB
testcase_31 AC 18 ms
5,248 KB
testcase_32 AC 16 ms
5,248 KB
testcase_33 AC 32 ms
5,376 KB
testcase_34 AC 81 ms
8,832 KB
testcase_35 AC 44 ms
5,760 KB
testcase_36 AC 85 ms
8,832 KB
testcase_37 WA -
testcase_38 AC 13 ms
5,248 KB
testcase_39 AC 62 ms
8,320 KB
testcase_40 AC 60 ms
8,320 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 8 ms
5,248 KB
testcase_43 AC 1 ms
5,248 KB
testcase_44 AC 1 ms
5,248 KB
testcase_45 AC 1 ms
5,248 KB
testcase_46 AC 1 ms
5,248 KB
testcase_47 AC 1 ms
5,248 KB
testcase_48 AC 1 ms
5,248 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-1 {
			Println("Yes")
			return
		}
		if z==0 {
			Println("Yes")
			return
		}
	}
	Println("No")	
}
0