結果

問題 No.383 レーティング
ユーザー yuiyui
提出日時 2017-02-20 13:43:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 76,736 KB
実行使用メモリ 56,328 KB
最終ジャッジ日時 2024-06-09 14:51:06
合計ジャッジ時間 4,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 109 ms
52,700 KB
testcase_02 AC 119 ms
54,384 KB
testcase_03 WA -
testcase_04 AC 129 ms
54,080 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 114 ms
54,992 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 131 ms
54,048 KB
testcase_12 AC 128 ms
54,252 KB
testcase_13 AC 127 ms
53,788 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);
    	}
    }

}
0