結果

問題 No.131 マンハッタン距離
ユーザー kenji_shioya
提出日時 2016-06-19 22:12:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 3,603 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-10-11 05:23:52
合計ジャッジ時間 7,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
    }
  }
}
0