結果

問題 No.383 レーティング
ユーザー yuiyui
提出日時 2017-02-20 13:44:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 76,352 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-06-09 14:51:11
合計ジャッジ時間 4,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,136 KB
testcase_01 AC 123 ms
52,924 KB
testcase_02 AC 116 ms
53,948 KB
testcase_03 AC 139 ms
54,020 KB
testcase_04 AC 130 ms
54,088 KB
testcase_05 AC 128 ms
54,116 KB
testcase_06 AC 110 ms
52,788 KB
testcase_07 AC 130 ms
54,464 KB
testcase_08 AC 128 ms
54,204 KB
testcase_09 AC 131 ms
54,044 KB
testcase_10 AC 130 ms
54,252 KB
testcase_11 AC 120 ms
53,084 KB
testcase_12 AC 130 ms
52,928 KB
testcase_13 AC 129 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

    	Scanner sc = new Scanner(System.in);
    	int numA = sc.nextInt();
    	int numB = sc.nextInt();
    	if((numA-numB)>0){
    		System.out.println("-" + (numA-numB));
    	}else if(numA==numB){
    		System.out.println(0);
    	}else{
    		System.out.println("+" +(numB-numA));
    	}
    }

}
0