結果

問題 No.353 ヘイトプラス
ユーザー YatsukuYatsuku
提出日時 2016-04-12 14:20:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 1,921 ms
コンパイル使用メモリ 70,692 KB
実行使用メモリ 56,368 KB
最終ジャッジ日時 2023-09-12 00:19:49
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
56,136 KB
testcase_01 AC 123 ms
55,884 KB
testcase_02 AC 124 ms
56,124 KB
testcase_03 AC 123 ms
56,180 KB
testcase_04 AC 123 ms
56,368 KB
testcase_05 AC 118 ms
55,968 KB
testcase_06 AC 124 ms
56,276 KB
testcase_07 AC 120 ms
56,076 KB
testcase_08 AC 120 ms
55,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_353 {
	public static void main(String args[]) {
		Scanner stdin = new Scanner(System.in);
		long num1 = stdin.nextLong();
		long num2 = stdin.nextLong();

		System.out.println(num1 - (-num2));
	}
}
0