結果

問題 No.1456 Range Xor
ユーザー tailstails
提出日時 2021-03-31 21:37:55
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 124,672 KB
最終ジャッジ日時 2024-05-09 05:58:03
合計ジャッジ時間 4,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 41 ms
42,496 KB
testcase_04 AC 85 ms
66,560 KB
testcase_05 AC 79 ms
110,336 KB
testcase_06 AC 40 ms
44,544 KB
testcase_07 AC 91 ms
118,912 KB
testcase_08 AC 76 ms
102,272 KB
testcase_09 AC 46 ms
51,584 KB
testcase_10 AC 62 ms
78,976 KB
testcase_11 AC 47 ms
56,064 KB
testcase_12 AC 30 ms
28,160 KB
testcase_13 AC 65 ms
81,792 KB
testcase_14 AC 38 ms
42,880 KB
testcase_15 AC 32 ms
31,360 KB
testcase_16 AC 65 ms
83,712 KB
testcase_17 AC 73 ms
96,768 KB
testcase_18 AC 29 ms
25,344 KB
testcase_19 AC 69 ms
97,280 KB
testcase_20 AC 65 ms
91,008 KB
testcase_21 AC 54 ms
68,096 KB
testcase_22 AC 37 ms
39,424 KB
testcase_23 AC 61 ms
76,800 KB
testcase_24 AC 42 ms
47,232 KB
testcase_25 AC 75 ms
76,160 KB
testcase_26 AC 75 ms
102,016 KB
testcase_27 AC 60 ms
83,712 KB
testcase_28 AC 56 ms
69,248 KB
testcase_29 AC 85 ms
124,672 KB
testcase_30 AC 66 ms
89,728 KB
testcase_31 AC 69 ms
65,024 KB
testcase_32 AC 49 ms
58,240 KB
testcase_33 AC 57 ms
75,392 KB
testcase_34 AC 74 ms
105,216 KB
testcase_35 AC 65 ms
87,040 KB
testcase_36 AC 64 ms
90,240 KB
testcase_37 AC 84 ms
123,776 KB
testcase_38 AC 40 ms
48,896 KB
testcase_39 AC 48 ms
60,160 KB
testcase_40 AC 80 ms
112,512 KB
testcase_41 AC 9 ms
7,552 KB
testcase_42 AC 34 ms
36,480 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:11:1: warning: return type defaults to 'int' [-Wimplicit-int]
   11 | main(){
      | ^~~~
main.c: In function 'main':
main.c:21:25: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   21 |                         write(1,"Yes",3);
      |                         ^~~~~
main.c:22:25: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   22 |                         _exit(0);
      |                         ^~~~~
      |                         _Exit

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

char*mmap();
#define rd(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}

unsigned char s[1<<27];

#define rep(v,e) for(int v=0;v<e;++v)

main(){
	char*rp=mmap(0l,1l<<28,1,2,0,0ll);
	rd(n);
	rd(k);
	s[0]=1;
	int b=0;
	rep(i,n){
		rd(a);
		b^=a;
		if(s[(b^k)>>3]&1<<((b^k)&7)){
			write(1,"Yes",3);
			_exit(0);
		}
		s[b>>3]|=1<<(b&7);
	}
	write(1,"No",2);
	_exit(0);
}
0