結果

問題 No.353 ヘイトプラス
ユーザー tentententen
提出日時 2020-10-03 11:23:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 208 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-07-18 04:14:32
合計ジャッジ時間 3,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,232 KB
testcase_01 AC 107 ms
52,960 KB
testcase_02 AC 122 ms
54,040 KB
testcase_03 AC 121 ms
53,884 KB
testcase_04 AC 127 ms
54,244 KB
testcase_05 AC 121 ms
54,196 KB
testcase_06 AC 121 ms
53,956 KB
testcase_07 AC 120 ms
54,244 KB
testcase_08 AC 121 ms
54,228 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();
		System.out.println(a - (-b));
	}
}
0