結果

問題 No.131 マンハッタン距離
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 10:54:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 740 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 75,048 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-07-04 03:22:08
合計ジャッジ時間 6,401 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,952 KB
testcase_01 AC 127 ms
53,820 KB
testcase_02 AC 129 ms
53,824 KB
testcase_03 AC 131 ms
54,132 KB
testcase_04 AC 131 ms
53,920 KB
testcase_05 AC 132 ms
54,144 KB
testcase_06 AC 130 ms
53,964 KB
testcase_07 AC 132 ms
53,824 KB
testcase_08 AC 132 ms
54,140 KB
testcase_09 AC 131 ms
53,892 KB
testcase_10 AC 135 ms
53,976 KB
testcase_11 AC 133 ms
53,992 KB
testcase_12 WA -
testcase_13 AC 128 ms
54,200 KB
testcase_14 AC 125 ms
54,172 KB
testcase_15 AC 113 ms
52,992 KB
testcase_16 AC 127 ms
53,876 KB
testcase_17 AC 127 ms
53,952 KB
testcase_18 AC 127 ms
53,808 KB
testcase_19 AC 129 ms
54,112 KB
testcase_20 AC 130 ms
54,164 KB
testcase_21 AC 127 ms
54,028 KB
testcase_22 AC 126 ms
53,968 KB
testcase_23 AC 137 ms
54,180 KB
testcase_24 AC 133 ms
54,100 KB
testcase_25 AC 133 ms
54,176 KB
testcase_26 AC 129 ms
53,916 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 = x+1;
           }else{
               point = x+y+1-d;
           }
       }
       
       System.out.println(point);
    }
}
0