結果

問題 No.149 碁石の移動
ユーザー togaerrortogaerror
提出日時 2015-03-13 23:10:21
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-06-28 22:50:42
合計ジャッジ時間 803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 6 ms
5,632 KB
testcase_03 AC 7 ms
5,632 KB
testcase_04 AC 6 ms
5,632 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 6 ms
5,632 KB
testcase_08 AC 6 ms
5,760 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 7 ms
5,632 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 6 ms
5,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl

use strict;
use warnings;

my ($a_w, $a_b) = split / /, <>;
my ($b_w, $b_b) = split / /, <>;
my ($c, $d) = split / /, <>;

if($c <  $a_w) {
	$b_w += $c;
	$a_w -= $c;
} else {
	$b_w += $a_w;
	$a_w = 0;
}

if($d < $b_w) {
	$a_w += $d;
} else {
	$a_w += $b_w;
}

print "$a_w\n";

exit;
0