結果

問題 No.2359 A in S ?
ユーザー tailstails
提出日時 2023-06-23 23:02:48
言語 cLay
(20240714-1)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 2,028 ms
コンパイル使用メモリ 174,984 KB
実行使用メモリ 240,384 KB
最終ジャッジ日時 2024-07-01 02:49:55
合計ジャッジ時間 8,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
238,592 KB
testcase_01 AC 250 ms
238,592 KB
testcase_02 AC 252 ms
238,720 KB
testcase_03 AC 251 ms
238,592 KB
testcase_04 AC 260 ms
240,256 KB
testcase_05 AC 261 ms
239,872 KB
testcase_06 AC 260 ms
240,256 KB
testcase_07 AC 258 ms
239,744 KB
testcase_08 AC 272 ms
240,000 KB
testcase_09 AC 260 ms
240,384 KB
testcase_10 AC 258 ms
239,744 KB
testcase_11 AC 259 ms
240,000 KB
testcase_12 AC 260 ms
240,128 KB
testcase_13 AC 267 ms
240,256 KB
testcase_14 AC 260 ms
240,256 KB
testcase_15 AC 258 ms
240,128 KB
testcase_16 AC 258 ms
240,384 KB
testcase_17 AC 266 ms
240,256 KB
testcase_18 AC 261 ms
240,128 KB
testcase_19 AC 266 ms
240,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@m,d[300][100400]{};
rep(n){
	ll@l,@r++,@x,@y;
	l+=(y-l)%%x;
	r+=(y-r)%%x;
	if(x<300){
		d[x][l]+=1;
		d[x][r]-=1;
	}else{
		rep(i,l,r,x){
			d[0][i]+=1;
		}
	}
}
rep(x,1,300){
	rep(i,x,100400){
		d[x][i]+=d[x][i-x];
	}
	rep(i,100400){
		d[0][i]+=d[x][i];
	}
}
rep(m){
	ll@a;
	wt(d[0][a]);
}
0