結果

問題 No.353 ヘイトプラス
ユーザー DemocoDemoco
提出日時 2016-04-09 02:27:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 215 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 71,056 KB
実行使用メモリ 55,992 KB
最終ジャッジ日時 2023-09-12 00:18:24
合計ジャッジ時間 4,340 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
55,572 KB
testcase_01 AC 120 ms
55,836 KB
testcase_02 AC 119 ms
55,844 KB
testcase_03 AC 118 ms
55,992 KB
testcase_04 AC 117 ms
55,584 KB
testcase_05 AC 119 ms
55,956 KB
testcase_06 AC 118 ms
55,984 KB
testcase_07 AC 119 ms
55,872 KB
testcase_08 AC 118 ms
55,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No353_Yukicoder {

	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