結果

問題 No.353 ヘイトプラス
ユーザー GrenacheGrenache
提出日時 2016-04-01 22:21:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 281 bytes
コンパイル時間 3,512 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-06-29 13:14:54
合計ジャッジ時間 4,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,216 KB
testcase_01 AC 99 ms
41,400 KB
testcase_02 AC 111 ms
41,128 KB
testcase_03 AC 105 ms
41,784 KB
testcase_04 AC 110 ms
40,028 KB
testcase_05 AC 110 ms
41,096 KB
testcase_06 AC 102 ms
41,124 KB
testcase_07 AC 105 ms
41,584 KB
testcase_08 AC 115 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder353 {

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

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

        System.out.println(a - (-b));

        sc.close();
    }
}
0