結果

問題 No.353 ヘイトプラス
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-17 02:06:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 478 bytes
コンパイル時間 3,590 ms
コンパイル使用メモリ 76,980 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-07-03 22:34:10
合計ジャッジ時間 4,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,096 KB
testcase_01 AC 104 ms
40,304 KB
testcase_02 AC 117 ms
41,132 KB
testcase_03 AC 105 ms
40,124 KB
testcase_04 AC 120 ms
41,368 KB
testcase_05 AC 120 ms
41,300 KB
testcase_06 AC 116 ms
41,424 KB
testcase_07 AC 101 ms
40,148 KB
testcase_08 AC 115 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No353 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long A = sc.nextLong();
		long B = sc.nextLong();
		
		if(A-B != 0) {
			System.out.println((A*A - B*B) / (A-B));
		}else if(A == 0 && B != 0) {
			System.out.println(B);
		}else if(A != 0 && B == 0) {
			System.out.println(A);
		}else if(A != 0 && B != 0 && A - B == 0) {
			System.out.println(A*2);
		}else {
			System.out.println(0);
		}
	}
}

0