結果

問題 No.1456 Range Xor
ユーザー ID 21712ID 21712
提出日時 2024-12-13 12:43:51
言語 Go
(1.22.1)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 10,993 ms
コンパイル使用メモリ 222,344 KB
実行使用メモリ 9,112 KB
最終ジャッジ日時 2024-12-13 12:44:07
合計ジャッジ時間 15,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 81 ms
8,984 KB
testcase_04 AC 83 ms
9,112 KB
testcase_05 AC 87 ms
9,108 KB
testcase_06 AC 83 ms
9,108 KB
testcase_07 AC 84 ms
9,108 KB
testcase_08 AC 83 ms
8,984 KB
testcase_09 AC 87 ms
8,984 KB
testcase_10 AC 85 ms
9,108 KB
testcase_11 AC 15 ms
6,820 KB
testcase_12 AC 6 ms
6,816 KB
testcase_13 AC 27 ms
6,820 KB
testcase_14 AC 26 ms
6,816 KB
testcase_15 AC 72 ms
8,980 KB
testcase_16 AC 64 ms
8,544 KB
testcase_17 AC 36 ms
6,816 KB
testcase_18 AC 25 ms
6,816 KB
testcase_19 AC 58 ms
8,600 KB
testcase_20 AC 67 ms
8,540 KB
testcase_21 AC 56 ms
8,596 KB
testcase_22 AC 61 ms
8,600 KB
testcase_23 AC 30 ms
6,824 KB
testcase_24 AC 12 ms
6,816 KB
testcase_25 AC 24 ms
6,820 KB
testcase_26 AC 41 ms
6,820 KB
testcase_27 AC 62 ms
8,540 KB
testcase_28 AC 20 ms
6,816 KB
testcase_29 AC 79 ms
8,980 KB
testcase_30 AC 82 ms
9,108 KB
testcase_31 AC 18 ms
6,816 KB
testcase_32 AC 16 ms
6,820 KB
testcase_33 AC 32 ms
6,816 KB
testcase_34 AC 84 ms
9,112 KB
testcase_35 AC 44 ms
6,820 KB
testcase_36 AC 84 ms
9,112 KB
testcase_37 AC 79 ms
8,984 KB
testcase_38 AC 14 ms
6,820 KB
testcase_39 AC 66 ms
8,600 KB
testcase_40 AC 63 ms
8,472 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 9 ms
6,820 KB
testcase_43 AC 1 ms
6,816 KB
testcase_44 AC 2 ms
6,820 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 1 ms
6,820 KB
testcase_47 AC 1 ms
6,816 KB
testcase_48 AC 2 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
		}
	}
	r:=z
	for i,v:=range a{
		z=z^v
		if j,ok:=t[r^z^k]; ok && j+1<=i {
			Println("Yes")
			return
		}
		if z==k {
			Println("Yes")
			return
		}
	}
	Println("No")	
}
0