結果

問題 No.353 ヘイトプラス
ユーザー GrenacheGrenache
提出日時 2016-04-01 22:21:28
言語 Java19
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 281 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 71,692 KB
実行使用メモリ 56,316 KB
最終ジャッジ日時 2023-09-11 23:57:35
合計ジャッジ時間 5,605 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
56,316 KB
testcase_01 AC 120 ms
56,160 KB
testcase_02 AC 123 ms
55,976 KB
testcase_03 AC 125 ms
56,004 KB
testcase_04 AC 122 ms
55,832 KB
testcase_05 AC 122 ms
55,508 KB
testcase_06 AC 121 ms
56,248 KB
testcase_07 AC 121 ms
55,836 KB
testcase_08 AC 123 ms
56,204 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