結果

問題 No.126 2基のエレベータ
ユーザー matu08151980matu08151980
提出日時 2015-01-25 15:32:54
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 32,788 KB
最終ジャッジ日時 2024-06-23 02:34:36
合計ジャッジ時間 2,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
32,400 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 37 ms
32,272 KB
testcase_04 AC 36 ms
32,272 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 36 ms
32,272 KB
testcase_09 AC 38 ms
32,272 KB
testcase_10 AC 35 ms
32,404 KB
testcase_11 AC 36 ms
32,144 KB
testcase_12 AC 38 ms
32,400 KB
testcase_13 AC 36 ms
32,528 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 35 ms
32,272 KB
testcase_17 WA -
testcase_18 AC 35 ms
32,276 KB
testcase_19 AC 37 ms
32,272 KB
testcase_20 WA -
testcase_21 AC 35 ms
32,148 KB
testcase_22 AC 37 ms
32,140 KB
testcase_23 AC 35 ms
32,272 KB
testcase_24 AC 35 ms
32,276 KB
testcase_25 AC 36 ms
32,524 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 35 ms
32,272 KB
testcase_29 AC 35 ms
32,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

fscanf(STDIN, "%d %d %d", $a, $b, $s);


$zetaia=abs($a-$s);
$zetaib=abs($b-$s);

//aが地下の場合
if($a==0){ 
	$i++;
}

if($zetaia<=$zetaib){
	$i=$zetaia+$s;
}else{
	$i=$zetaib+$zetaia+$a;	
}


echo $i."\n";

?>
0