結果

問題 No.710 チーム戦
ユーザー tailstails
提出日時 2018-06-29 23:12:43
言語 cLay
(20240714-1)
結果
AC  
実行時間 38 ms / 3,000 ms
コード長 183 bytes
コンパイル時間 2,037 ms
コンパイル使用メモリ 173,752 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-07-05 13:08:31
合計ジャッジ時間 3,847 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,504 KB
testcase_02 AC 34 ms
42,752 KB
testcase_03 AC 33 ms
42,752 KB
testcase_04 AC 32 ms
42,752 KB
testcase_05 AC 38 ms
42,880 KB
testcase_06 AC 32 ms
42,880 KB
testcase_07 AC 31 ms
42,880 KB
testcase_08 AC 31 ms
42,752 KB
testcase_09 AC 31 ms
42,880 KB
testcase_10 AC 31 ms
42,880 KB
testcase_11 AC 31 ms
42,752 KB
testcase_12 AC 31 ms
42,880 KB
testcase_13 AC 31 ms
42,752 KB
testcase_14 AC 31 ms
42,880 KB
testcase_15 AC 31 ms
42,752 KB
testcase_16 AC 31 ms
42,752 KB
testcase_17 AC 31 ms
42,752 KB
testcase_18 AC 31 ms
43,008 KB
testcase_19 AC 31 ms
42,880 KB
testcase_20 AC 32 ms
42,880 KB
testcase_21 AC 32 ms
42,752 KB
testcase_22 AC 32 ms
42,752 KB
testcase_23 AC 30 ms
42,880 KB
testcase_24 AC 31 ms
42,752 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int n,a[100],b[100];
int dp[110][2d5];
int r=2d5;
{
	rd(n,(a,b)(n));
	rep(i,n)rep(j,1d5)dp[i+1][j]=min(dp[i][j]+b[i],j<a[i]?r:dp[i][j-a[i]]);
	rep(j,1d5)r<?=max(j,dp[n][j]);
	wt(r);
}
0