結果

問題 No.353 ヘイトプラス
ユーザー spacenautspacenaut
提出日時 2016-05-15 19:17:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 233 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 73,712 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-06-29 13:46:15
合計ジャッジ時間 4,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,188 KB
testcase_01 AC 132 ms
41,316 KB
testcase_02 AC 132 ms
41,396 KB
testcase_03 AC 130 ms
40,996 KB
testcase_04 AC 128 ms
41,032 KB
testcase_05 AC 129 ms
40,888 KB
testcase_06 AC 129 ms
41,416 KB
testcase_07 AC 115 ms
40,092 KB
testcase_08 AC 131 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0353{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int sum = Math.abs((a - a * 2) - b);
		System.out.println(sum);
	}
}
0