結果

問題 No.1233 割り切れない気持ち
ユーザー tailstails
提出日時 2020-09-18 22:19:58
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 172,480 KB
実行使用メモリ 9,336 KB
最終ジャッジ日時 2024-07-05 14:14:14
合計ジャッジ時間 57,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 11 ms
5,376 KB
testcase_04 AC 11 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1,755 ms
7,040 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1,739 ms
7,040 KB
testcase_21 AC 1,742 ms
7,424 KB
testcase_22 AC 1,736 ms
7,424 KB
testcase_23 AC 1,737 ms
7,424 KB
testcase_24 AC 1,754 ms
7,296 KB
testcase_25 AC 1,753 ms
7,296 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 4 ms
5,376 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,s,t,z,a[2d5],b[1d3],c[3d5];

{
	rd(n,a(n));
	rep[a](x,n){
		rep(k,2,1d3){
			b[k]+=x%k;
		}
		c[x]+=1;
		s+=x;
	}
	c[1..2d5]+=c[0..];
	rep[a](x,n){
		if(x<1d3){
			z+=b[x];
		}else{
			z+=s;
			t=2d5/x*x;
			while(t){
				z-=x*(c[2d5]-c[t]);
				t-=x;
			}
		}
	}
	wt(z);
}
0