結果

問題 No.131 マンハッタン距離
ユーザー GoryudyumaGoryudyuma
提出日時 2015-03-18 18:30:13
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 104 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 31,184 KB
実行使用メモリ 31,592 KB
最終ジャッジ日時 2024-06-28 23:11:17
合計ジャッジ時間 2,187 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,592 KB
testcase_01 AC 41 ms
31,344 KB
testcase_02 AC 39 ms
30,980 KB
testcase_03 AC 41 ms
31,500 KB
testcase_04 AC 40 ms
31,416 KB
testcase_05 AC 40 ms
31,504 KB
testcase_06 AC 38 ms
31,452 KB
testcase_07 AC 38 ms
31,036 KB
testcase_08 AC 38 ms
31,452 KB
testcase_09 AC 40 ms
31,216 KB
testcase_10 AC 42 ms
30,972 KB
testcase_11 AC 40 ms
31,160 KB
testcase_12 AC 40 ms
31,416 KB
testcase_13 AC 40 ms
31,032 KB
testcase_14 AC 39 ms
30,984 KB
testcase_15 AC 41 ms
31,020 KB
testcase_16 AC 39 ms
31,072 KB
testcase_17 AC 38 ms
31,092 KB
testcase_18 AC 39 ms
30,924 KB
testcase_19 AC 40 ms
31,008 KB
testcase_20 AC 39 ms
31,332 KB
testcase_21 AC 40 ms
31,160 KB
testcase_22 AC 40 ms
30,944 KB
testcase_23 AC 39 ms
31,152 KB
testcase_24 AC 39 ms
31,292 KB
testcase_25 AC 37 ms
31,196 KB
testcase_26 AC 38 ms
31,036 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$a=  explode(' ', trim(fgets(STDIN)));
echo max(min($a[2],$a[0])-max(0,$a[2]-$a[1])+1,0).PHP_EOL;
0