結果

問題 No.383 レーティング
ユーザー GrenacheGrenache
提出日時 2016-07-01 22:22:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 3,312 ms
コンパイル使用メモリ 78,112 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-10-12 00:07:50
合計ジャッジ時間 6,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,876 KB
testcase_01 AC 136 ms
53,760 KB
testcase_02 AC 136 ms
53,996 KB
testcase_03 AC 136 ms
53,736 KB
testcase_04 AC 137 ms
54,004 KB
testcase_05 AC 135 ms
54,136 KB
testcase_06 AC 136 ms
54,020 KB
testcase_07 AC 136 ms
53,748 KB
testcase_08 AC 136 ms
53,856 KB
testcase_09 AC 136 ms
54,036 KB
testcase_10 AC 137 ms
53,832 KB
testcase_11 AC 135 ms
53,792 KB
testcase_12 AC 134 ms
53,936 KB
testcase_13 AC 134 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder383 {

    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	Printer pr = new Printer(System.out);

    	int a = sc.nextInt();
    	int b = sc.nextInt();

    	if (b > a) {
    		pr.printf("+%d\n", b - a);
    	} else if (b < a) {
    		pr.printf("-%d\n", a - b);
    	} else {
    		pr.printf("%d\n", 0);
    	}


        pr.close();
        sc.close();
    }

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0