結果

問題 No.1189 Sum is XOR
ユーザー tailstails
提出日時 2020-08-22 17:42:06
言語 cLay
(20240714-1)
結果
AC  
実行時間 1,310 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 2,609 ms
コンパイル使用メモリ 173,360 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-07-05 13:55:44
合計ジャッジ時間 20,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,295 ms
5,760 KB
testcase_01 AC 1,290 ms
5,888 KB
testcase_02 AC 1,292 ms
5,760 KB
testcase_03 AC 618 ms
5,376 KB
testcase_04 AC 533 ms
5,376 KB
testcase_05 AC 893 ms
5,376 KB
testcase_06 AC 1,310 ms
5,760 KB
testcase_07 AC 721 ms
5,376 KB
testcase_08 AC 293 ms
5,376 KB
testcase_09 AC 299 ms
5,376 KB
testcase_10 AC 234 ms
5,376 KB
testcase_11 AC 249 ms
5,376 KB
testcase_12 AC 1,273 ms
5,632 KB
testcase_13 AC 1,082 ms
5,376 KB
testcase_14 AC 679 ms
5,376 KB
testcase_15 AC 251 ms
5,376 KB
testcase_16 AC 139 ms
5,376 KB
testcase_17 AC 231 ms
5,376 KB
testcase_18 AC 435 ms
5,376 KB
testcase_19 AC 909 ms
5,376 KB
testcase_20 AC 927 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
ll n,k,a[2d5];
Mint s,d[11][1024];
{
	rd(n,k,a(n));
	d[0][0]=1;
	rep[a](h,n){
		rrep(j,10){
			rep(i,1024){
				if(!(i&h)){
					d[j+1][i|h]+=d[j][i];
				}
			}
		}
	}
	if(k<11){
		rep(i,1024){
			s+=d[k][i];
		}
	}
	wt(s);
}
0