結果

問題 No.131 マンハッタン距離
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 10:56:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 741 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-07-04 03:22:15
合計ジャッジ時間 6,208 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
52,784 KB
testcase_01 AC 129 ms
53,920 KB
testcase_02 AC 131 ms
54,172 KB
testcase_03 AC 129 ms
54,124 KB
testcase_04 AC 129 ms
54,036 KB
testcase_05 AC 129 ms
54,008 KB
testcase_06 AC 127 ms
54,164 KB
testcase_07 AC 126 ms
53,992 KB
testcase_08 AC 128 ms
54,096 KB
testcase_09 AC 125 ms
53,956 KB
testcase_10 AC 132 ms
54,028 KB
testcase_11 AC 130 ms
54,528 KB
testcase_12 AC 112 ms
53,080 KB
testcase_13 AC 123 ms
53,944 KB
testcase_14 AC 126 ms
53,640 KB
testcase_15 AC 127 ms
54,156 KB
testcase_16 AC 126 ms
53,840 KB
testcase_17 AC 131 ms
54,044 KB
testcase_18 AC 128 ms
53,972 KB
testcase_19 AC 114 ms
53,044 KB
testcase_20 AC 130 ms
54,036 KB
testcase_21 AC 130 ms
54,228 KB
testcase_22 AC 124 ms
53,984 KB
testcase_23 AC 129 ms
54,072 KB
testcase_24 AC 130 ms
54,048 KB
testcase_25 AC 130 ms
54,188 KB
testcase_26 AC 127 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       int x = koko.nextInt();
       int y = koko.nextInt();
       int d = koko.nextInt();
       int point;
       if(d>x+y){
           point = 0;
       }else if(x<y){
           if(d<x){
               point=d+1;
           }else if(x<=d&&d<=y){
               point=x+1;
           }else{
               point = x+y+1-d;
           }
       }else{
           if(d<y){
               point=d+1;
           }else if(y<=d&&d<=x){
               point = y+1;
           }else{
               point = x+y+1-d;
           }
       }
       
       System.out.println(point);
    }
}

0