結果

問題 No.2770 Coupon Optimization
ユーザー tailstails
提出日時 2024-06-04 11:20:59
言語 cLay
(20240714-1)
結果
AC  
実行時間 45 ms / 3,000 ms
コード長 171 bytes
コンパイル時間 5,547 ms
コンパイル使用メモリ 207,804 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-06-04 11:21:08
合計ジャッジ時間 8,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 45 ms
6,912 KB
testcase_04 AC 39 ms
7,040 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 30 ms
7,040 KB
testcase_07 AC 30 ms
8,704 KB
testcase_08 AC 34 ms
8,576 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 17 ms
6,912 KB
testcase_11 AC 14 ms
6,400 KB
testcase_12 AC 19 ms
7,168 KB
testcase_13 AC 17 ms
6,784 KB
testcase_14 AC 33 ms
8,704 KB
testcase_15 AC 34 ms
8,704 KB
testcase_16 AC 35 ms
8,576 KB
testcase_17 AC 34 ms
8,576 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(k,n){
	int d=k;
	rep(j,100){
		d-=h[j];
		if(d>=0){
			z+=a[d];
		}
	}
	wt(z);
}
0