結果

問題 No.297 カードの数式
ユーザー tailstails
提出日時 2015-11-06 22:44:56
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 468 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 13:22:04
合計ジャッジ時間 1,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 WA -
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::i" used only once: possible typo at Main.pl line 42.
Main.pl syntax OK

ソースコード

diff #

<>;@b=@a=sort<>=~/\S/g;

$y=0;
while($a[0]eq'+'){
	++$p;
	shift@a;
}
while($a[0]eq'-'){
	++$m;
	shift@a;
}
while($m){
	$y-=shift@a;
	--$m;
}
while($p){
	$y+=shift@a;
	--$p;
}
$y+=join'',reverse@a;

$z=$p=$m=0;
while($b[0]eq'+'){
	++$p;
	shift@b;
}
while($b[0]eq'-'){
	++$m;
	shift@b;
}
if($m){
	while($p>=0){
		$z+=shift@b;
		--$p;
	}
	while($m>1){
		$z-=shift@b;
		--$m;
	}
	$z-=join'',reverse@b;
}else{
	$c[$i++%($p+1)].=$_ for@b;
	$z=eval join'+',@c;
}
print"$y $z"
0