結果
問題 |
No.131 マンハッタン距離
|
ユーザー |
![]() |
提出日時 | 2016-06-19 22:10:25 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 568 bytes |
コンパイル時間 | 3,677 ms |
コンパイル使用メモリ | 74,072 KB |
実行使用メモリ | 56,060 KB |
最終ジャッジ日時 | 2024-10-11 05:24:18 |
合計ジャッジ時間 | 8,018 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 WA * 3 |
ソースコード
import java.util.*; public class Exercise98{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int d = sc.nextInt(); int smaller = Math.min(x, y); int bigger = Math.max(x, y); if(d < smaller){ System.out.println(d - 1 + 2); }else if(d >= smaller && d <= bigger){ System.out.println(smaller - 1 + 2); }else if(d < bigger + smaller){ System.out.println((bigger + smaller - d) - 1 + 2); }else{ System.out.println(0); } } }