結果

問題 No.353 ヘイトプラス
ユーザー mits58mits58
提出日時 2016-07-02 01:01:30
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 245 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 54,012 KB
最終ジャッジ日時 2024-10-12 01:50:11
合計ジャッジ時間 4,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,968 KB
testcase_01 AC 121 ms
47,512 KB
testcase_02 AC 121 ms
45,872 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 113 ms
44,820 KB
testcase_06 AC 120 ms
45,664 KB
testcase_07 AC 116 ms
45,600 KB
testcase_08 AC 117 ms
45,660 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();
			System.out.println((a*a-b*b)/(a-b));
		}
	}
}
0