結果

問題 No.208 王将
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-05-15 22:40:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 926 bytes
コンパイル時間 3,477 ms
コンパイル使用メモリ 76,020 KB
実行使用メモリ 54,580 KB
最終ジャッジ日時 2024-10-09 16:18:28
合計ジャッジ時間 7,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No0208 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int x = abs(in.nextInt());
        int y = abs(in.nextInt());
        int x2 = abs(in.nextInt());
        int y2 = abs(in.nextInt());
        if (x == y && x2 == y2 && x2 < x) {
            out.println((x+y-min(x,y)+1));
        }else {
            out.println((x+y-min(x,y)));
        }
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0