結果

問題 No.2840 RGB Plates
ユーザー tailstails
提出日時 2024-08-09 22:52:51
言語 cLay
(20240714-1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 5,035 ms
コンパイル使用メモリ 209,784 KB
実行使用メモリ 38,868 KB
最終ジャッジ日時 2024-08-18 00:59:44
合計ジャッジ時間 6,722 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
36,816 KB
testcase_01 AC 29 ms
36,688 KB
testcase_02 AC 30 ms
36,672 KB
testcase_03 AC 28 ms
36,808 KB
testcase_04 AC 27 ms
36,692 KB
testcase_05 AC 28 ms
36,692 KB
testcase_06 AC 27 ms
36,676 KB
testcase_07 AC 26 ms
34,688 KB
testcase_08 AC 27 ms
36,808 KB
testcase_09 AC 26 ms
36,688 KB
testcase_10 AC 27 ms
38,868 KB
testcase_11 AC 26 ms
34,560 KB
testcase_12 AC 29 ms
36,676 KB
testcase_13 AC 29 ms
36,676 KB
testcase_14 AC 29 ms
36,688 KB
testcase_15 AC 28 ms
34,560 KB
testcase_16 AC 31 ms
34,688 KB
testcase_17 AC 31 ms
36,820 KB
testcase_18 AC 28 ms
36,800 KB
testcase_19 AC 27 ms
36,800 KB
testcase_20 AC 29 ms
36,688 KB
testcase_21 AC 28 ms
34,816 KB
testcase_22 AC 26 ms
34,688 KB
testcase_23 AC 27 ms
34,560 KB
testcase_24 AC 29 ms
34,560 KB
testcase_25 AC 28 ms
36,680 KB
testcase_26 AC 27 ms
36,544 KB
testcase_27 AC 27 ms
36,820 KB
testcase_28 AC 28 ms
34,688 KB
testcase_29 AC 26 ms
36,676 KB
testcase_30 AC 25 ms
36,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int d[8d6]{1},s=0,m=8d6;
int@n,@a[n];
sortA(n,a);
rep(i,n){
	s+=a[i];
	rrep(j,a[i],min(m,s+1)){
		if(d[j-a[i]]){
			if(++d[j]>=2){
				m=j;
			}
		}
	}
}
wt(s-2m>0?s-2m:-1);
0