結果

問題 No.353 ヘイトプラス
ユーザー mits58mits58
提出日時 2016-07-02 01:03:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 285 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-10-12 01:50:16
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,996 KB
testcase_01 AC 131 ms
54,048 KB
testcase_02 AC 125 ms
54,008 KB
testcase_03 AC 125 ms
53,988 KB
testcase_04 WA -
testcase_05 AC 126 ms
54,008 KB
testcase_06 AC 130 ms
53,960 KB
testcase_07 AC 130 ms
53,912 KB
testcase_08 AC 126 ms
54,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			long a=sc.nextLong();
			long b=sc.nextLong();
			if(a==b) System.out.println(0);
			else System.out.println((a*a-b*b)/(a-b));
		}
	}
}
0