結果

問題 No.353 ヘイトプラス
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-04-01 23:17:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 244 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-06-29 13:19:57
合計ジャッジ時間 4,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,004 KB
testcase_01 AC 128 ms
41,192 KB
testcase_02 AC 127 ms
41,104 KB
testcase_03 AC 130 ms
41,268 KB
testcase_04 AC 128 ms
41,328 KB
testcase_05 AC 131 ms
41,236 KB
testcase_06 AC 129 ms
41,164 KB
testcase_07 AC 127 ms
41,312 KB
testcase_08 AC 127 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		int a = in.nextInt();
		int b = in.nextInt();

		int ans = a - (-1) * b;
		System.out.println(ans);
	}
}
0