結果

問題 No.383 レーティング
ユーザー nullzinenullzine
提出日時 2017-01-20 20:49:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 84,984 KB
実行使用メモリ 42,620 KB
最終ジャッジ日時 2024-06-02 08:01:27
合計ジャッジ時間 4,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
42,496 KB
testcase_01 AC 123 ms
42,028 KB
testcase_02 AC 126 ms
41,968 KB
testcase_03 AC 127 ms
42,260 KB
testcase_04 AC 132 ms
42,088 KB
testcase_05 AC 124 ms
41,956 KB
testcase_06 AC 146 ms
42,332 KB
testcase_07 AC 143 ms
42,564 KB
testcase_08 AC 146 ms
42,180 KB
testcase_09 AC 123 ms
41,852 KB
testcase_10 AC 129 ms
42,080 KB
testcase_11 AC 146 ms
42,620 KB
testcase_12 AC 146 ms
42,340 KB
testcase_13 AC 124 ms
41,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main {

    public static void main(String[] args){
        String[] strs = new java.util.Scanner(System.in).nextLine().split(" ");
        System.out.println((0<Integer.parseInt(strs[1])-Integer.parseInt(strs[0])?"+":"")+(Integer.parseInt(strs[1])-Integer.parseInt(strs[0])));
    }

}
0