結果

問題 No.208 王将
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-05-15 22:34:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 773 bytes
コンパイル時間 2,947 ms
コンパイル使用メモリ 75,780 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-07-06 04:06:33
合計ジャッジ時間 6,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,532 KB
testcase_01 AC 118 ms
40,892 KB
testcase_02 AC 114 ms
41,164 KB
testcase_03 AC 120 ms
41,548 KB
testcase_04 AC 113 ms
41,336 KB
testcase_05 AC 100 ms
41,228 KB
testcase_06 AC 112 ms
41,208 KB
testcase_07 AC 113 ms
41,440 KB
testcase_08 AC 114 ms
41,100 KB
testcase_09 AC 111 ms
41,452 KB
testcase_10 WA -
testcase_11 AC 119 ms
41,300 KB
testcase_12 AC 115 ms
41,220 KB
testcase_13 AC 111 ms
41,012 KB
testcase_14 WA -
testcase_15 AC 105 ms
41,452 KB
testcase_16 AC 121 ms
41,100 KB
testcase_17 AC 108 ms
40,972 KB
testcase_18 WA -
testcase_19 AC 106 ms
41,236 KB
testcase_20 AC 110 ms
41,304 KB
testcase_21 AC 109 ms
41,472 KB
testcase_22 AC 120 ms
41,124 KB
testcase_23 WA -
testcase_24 AC 118 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

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());
        in.nextInt(); in.nextInt();
        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