結果

問題 No.353 ヘイトプラス
ユーザー samplelpmassamplelpmas
提出日時 2016-12-28 10:18:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 266 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 73,628 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-07-03 22:26:00
合計ジャッジ時間 3,726 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,136 KB
testcase_01 AC 119 ms
52,704 KB
testcase_02 AC 121 ms
54,020 KB
testcase_03 AC 124 ms
54,032 KB
testcase_04 AC 128 ms
54,336 KB
testcase_05 AC 125 ms
54,140 KB
testcase_06 AC 121 ms
54,020 KB
testcase_07 AC 126 ms
53,860 KB
testcase_08 AC 114 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package sample;

import java.util.Scanner;

public class Main {

    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));

    }

}
0