結果

問題 No.131 マンハッタン距離
ユーザー mizzsigmizzsig
提出日時 2016-12-05 22:15:57
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 32,276 KB
最終ジャッジ日時 2024-11-27 22:38:37
合計ジャッジ時間 3,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,148 KB
testcase_01 AC 35 ms
31,344 KB
testcase_02 AC 35 ms
31,152 KB
testcase_03 AC 34 ms
31,476 KB
testcase_04 AC 34 ms
31,064 KB
testcase_05 AC 34 ms
31,476 KB
testcase_06 AC 34 ms
31,548 KB
testcase_07 WA -
testcase_08 AC 34 ms
31,388 KB
testcase_09 AC 34 ms
31,152 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 34 ms
31,472 KB
testcase_13 AC 35 ms
31,480 KB
testcase_14 AC 33 ms
31,352 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 35 ms
31,480 KB
testcase_18 AC 33 ms
31,168 KB
testcase_19 AC 34 ms
31,280 KB
testcase_20 AC 35 ms
31,180 KB
testcase_21 AC 33 ms
31,356 KB
testcase_22 WA -
testcase_23 AC 34 ms
31,568 KB
testcase_24 AC 34 ms
31,172 KB
testcase_25 WA -
testcase_26 AC 33 ms
31,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
	$in = trim(fgets(STDIN));
	$in = explode(' ', $in);
	
	$ans = 0;
	if(max($in[0], $in[1]) >= $in[2]){
		$ans = min($in) + 1;
	}
	
	echo $ans."\n";
?>
0