結果

問題 No.353 ヘイトプラス
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 18:04:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 255 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 73,716 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-07-03 22:23:06
合計ジャッジ時間 3,747 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,364 KB
testcase_01 AC 128 ms
54,116 KB
testcase_02 AC 127 ms
53,768 KB
testcase_03 AC 128 ms
54,136 KB
testcase_04 AC 125 ms
53,964 KB
testcase_05 AC 127 ms
54,096 KB
testcase_06 AC 125 ms
54,032 KB
testcase_07 AC 125 ms
53,808 KB
testcase_08 AC 124 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int A = sc.nextInt();
        int B = sc.nextInt();
        int r = A-(-1*B);
        System.out.println(r);
    }
}
0