結果

問題 No.353 ヘイトプラス
ユーザー sasukesasuke
提出日時 2016-06-17 15:13:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 239 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 70,748 KB
実行使用メモリ 58,136 KB
最終ジャッジ日時 2023-09-12 00:46:06
合計ジャッジ時間 3,804 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
56,112 KB
testcase_01 AC 122 ms
55,892 KB
testcase_02 AC 121 ms
55,492 KB
testcase_03 AC 122 ms
55,808 KB
testcase_04 AC 121 ms
55,796 KB
testcase_05 AC 120 ms
55,776 KB
testcase_06 AC 121 ms
56,212 KB
testcase_07 AC 122 ms
58,136 KB
testcase_08 AC 125 ms
55,552 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