結果

問題 No.383 レーティング
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-03 21:52:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 2,387 ms
コンパイル使用メモリ 76,788 KB
実行使用メモリ 51,048 KB
最終ジャッジ日時 2024-09-14 07:10:41
合計ジャッジ時間 4,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
50,952 KB
testcase_01 AC 73 ms
51,048 KB
testcase_02 AC 55 ms
49,796 KB
testcase_03 AC 73 ms
50,804 KB
testcase_04 AC 73 ms
50,980 KB
testcase_05 AC 73 ms
50,972 KB
testcase_06 AC 72 ms
50,960 KB
testcase_07 AC 72 ms
50,944 KB
testcase_08 AC 73 ms
50,916 KB
testcase_09 AC 73 ms
50,788 KB
testcase_10 AC 73 ms
50,800 KB
testcase_11 AC 73 ms
50,912 KB
testcase_12 AC 73 ms
50,824 KB
testcase_13 AC 72 ms
50,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

import static java.lang.System.in;

public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        int a = Integer.parseInt(inputs[0]);
        int b = Integer.parseInt(inputs[1]);
        System.out.println(formatRateChange(a,b));
    }

    private static String formatRateChange(int previous, int current) {
        if(previous==current) {
            return "0";
        } else if (previous < current) {
            return "+" + (current-previous);
        } else {
            return "-" + (previous-current);
        }
    }
}
0