結果

問題 No.1189 Sum is XOR
ユーザー tailstails
提出日時 2020-08-22 17:44:32
言語 cLay
(20240714-1)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 2,520 ms
コンパイル使用メモリ 173,732 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-07-05 13:55:23
合計ジャッジ時間 9,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 429 ms
5,888 KB
testcase_01 AC 431 ms
5,632 KB
testcase_02 AC 431 ms
6,016 KB
testcase_03 AC 211 ms
5,376 KB
testcase_04 AC 180 ms
5,376 KB
testcase_05 AC 299 ms
5,376 KB
testcase_06 AC 433 ms
5,760 KB
testcase_07 AC 236 ms
5,376 KB
testcase_08 AC 97 ms
5,376 KB
testcase_09 AC 103 ms
5,376 KB
testcase_10 AC 79 ms
5,376 KB
testcase_11 AC 82 ms
5,376 KB
testcase_12 AC 428 ms
5,632 KB
testcase_13 AC 361 ms
5,376 KB
testcase_14 AC 230 ms
5,376 KB
testcase_15 AC 83 ms
5,376 KB
testcase_16 AC 47 ms
5,376 KB
testcase_17 AC 78 ms
5,376 KB
testcase_18 AC 147 ms
5,376 KB
testcase_19 AC 302 ms
5,376 KB
testcase_20 AC 303 ms
5,376 KB
testcase_21 AC 2 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){
		rep(i,1024){
			if(!(i&h)){
				rrep(j,10){
					d[j+1][i|h]+=d[j][i];
				}
			}
		}
	}
	if(k<11){
		rep(i,1024){
			s+=d[k][i];
		}
	}
	wt(s);
}
0