結果

問題 No.2770 Coupon Optimization
ユーザー tailstails
提出日時 2024-06-04 11:00:20
言語 cLay
(20240714-1)
結果
AC  
実行時間 33 ms / 3,000 ms
コード長 191 bytes
コンパイル時間 5,953 ms
コンパイル使用メモリ 208,012 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-06-04 11:00:30
合計ジャッジ時間 7,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 25 ms
7,040 KB
testcase_04 AC 31 ms
7,040 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 26 ms
7,040 KB
testcase_07 AC 25 ms
8,704 KB
testcase_08 AC 33 ms
8,704 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 16 ms
7,040 KB
testcase_11 AC 11 ms
6,400 KB
testcase_12 AC 17 ms
7,296 KB
testcase_13 AC 15 ms
6,912 KB
testcase_14 AC 32 ms
8,576 KB
testcase_15 AC 30 ms
8,704 KB
testcase_16 AC 31 ms
8,704 KB
testcase_17 AC 33 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@m,@a[n],h[100]{},z=0;
a[0..n-1]/=100;
sortA(n,a);
rep(m){
	ll@b;
	h[100-b]++;
}
rep(j,1,100){
	h[j]+=h[j-1];
}
rep(k,n){
	rep(j,100){
		if(k-h[j]>=0){
			z+=a[k-h[j]];
		}
	}
	wt(z);
}
0