結果

問題 No.527 ナップサック容量問題
ユーザー %20%20
提出日時 2018-05-31 19:43:58
言語 Perl
(5.38.2)
結果
AC  
実行時間 739 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 7,196 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-06-30 08:37:00
合計ジャッジ時間 9,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 125 ms
6,944 KB
testcase_06 AC 547 ms
8,576 KB
testcase_07 AC 345 ms
7,808 KB
testcase_08 AC 88 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 550 ms
8,576 KB
testcase_11 AC 228 ms
7,296 KB
testcase_12 AC 137 ms
7,040 KB
testcase_13 AC 600 ms
8,576 KB
testcase_14 AC 91 ms
6,940 KB
testcase_15 AC 207 ms
7,296 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 120 ms
6,940 KB
testcase_18 AC 164 ms
7,040 KB
testcase_19 AC 5 ms
6,944 KB
testcase_20 AC 78 ms
6,940 KB
testcase_21 AC 683 ms
8,704 KB
testcase_22 AC 357 ms
7,808 KB
testcase_23 AC 547 ms
8,192 KB
testcase_24 AC 34 ms
6,944 KB
testcase_25 AC 281 ms
7,552 KB
testcase_26 AC 248 ms
7,296 KB
testcase_27 AC 268 ms
7,424 KB
testcase_28 AC 206 ms
7,424 KB
testcase_29 AC 739 ms
8,704 KB
testcase_30 AC 4 ms
6,940 KB
testcase_31 AC 4 ms
6,940 KB
testcase_32 AC 5 ms
6,944 KB
testcase_33 AC 4 ms
6,940 KB
testcase_34 AC 5 ms
6,940 KB
testcase_35 AC 228 ms
7,424 KB
testcase_36 AC 4 ms
6,940 KB
testcase_37 AC 129 ms
6,944 KB
testcase_38 AC 165 ms
7,168 KB
testcase_39 AC 158 ms
7,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Unquoted string "inf" may clash with future reserved word at Main.pl line 19.
Main.pl syntax OK

ソースコード

diff #

<>;
@vw=<>;
$V=pop@vw;
for(@vw){
	($v,$w)=split;
	for(reverse 0..@d){
		$d[$_+$w]+=$-=$d[$_]+$v-$d[$_+$w]
	}
}
for(@d){
	if($_==$V){
		$a||=$i
	}
	if($_>$V){
		$b||=$i-1
	}
	++$i
}
print$a,$/,$b||inf
0