結果

問題 No.353 ヘイトプラス
ユーザー sasukesasuke
提出日時 2016-06-17 15:13:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 239 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-06-29 13:52:20
合計ジャッジ時間 3,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,224 KB
testcase_01 AC 130 ms
41,476 KB
testcase_02 AC 128 ms
41,148 KB
testcase_03 AC 127 ms
41,056 KB
testcase_04 AC 131 ms
41,368 KB
testcase_05 AC 128 ms
41,588 KB
testcase_06 AC 116 ms
41,248 KB
testcase_07 AC 131 ms
41,224 KB
testcase_08 AC 129 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        long a = sc.nextInt();
        long b = sc.nextInt();
        System.out.println(a-(-b));
    }
}
0