結果

問題 No.10 +か×か
ユーザー %20%20
提出日時 2017-07-11 00:41:57
言語 Perl
(5.38.2)
結果
AC  
実行時間 2,851 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 6,824 KB
実行使用メモリ 135,040 KB
最終ジャッジ日時 2024-12-14 15:40:26
合計ジャッジ時間 8,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 2,848 ms
135,040 KB
testcase_04 AC 264 ms
15,488 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2,851 ms
134,400 KB
testcase_07 AC 920 ms
58,752 KB
testcase_08 AC 200 ms
22,528 KB
testcase_09 AC 229 ms
27,648 KB
testcase_10 AC 5 ms
5,632 KB
testcase_11 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$N=<>;
$T=<>;
$/=$";
$d[<>][1]=1;
for$i(2..$N){
	$A=<>;
	for$v(1..$T){
		if($d[$v][$i-1]){
			if($v+$A<=$T){
				if($d[$v][$i-1]*2+1>$d[$v+$A][$i]){
					$d[$v+$A][$i]=$d[$v][$i-1]*2+1;
				}
			}
			if($v*$A<=$T){
				if($d[$v][$i-1]*2>$d[$v*$A][$i]){
					$d[$v*$A][$i]=$d[$v][$i-1]*2;
				}
			}
		}
	}
}
for$i(reverse 0..$N-2){
	print$d[$T][$N]>>$i&1?'+':'*';
}
print"\n";
0