結果

問題 No.383 レーティング
ユーザー kenji_shioyakenji_shioya
提出日時 2016-07-02 23:24:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 76,232 KB
実行使用メモリ 50,352 KB
最終ジャッジ日時 2024-10-12 01:42:07
合計ジャッジ時間 6,126 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
49,736 KB
testcase_01 AC 134 ms
49,708 KB
testcase_02 AC 132 ms
49,856 KB
testcase_03 AC 146 ms
50,352 KB
testcase_04 AC 130 ms
49,576 KB
testcase_05 AC 147 ms
49,840 KB
testcase_06 AC 151 ms
50,104 KB
testcase_07 AC 145 ms
50,096 KB
testcase_08 AC 116 ms
48,720 KB
testcase_09 AC 147 ms
50,104 KB
testcase_10 AC 145 ms
50,168 KB
testcase_11 AC 132 ms
49,916 KB
testcase_12 AC 135 ms
50,012 KB
testcase_13 AC 130 ms
49,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise142{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int a = sc.nextInt();
    int b = sc.nextInt();
    int d = b - a;
    System.out.println((d > 0) ? "+" + d : d);
  }
}
0