結果

問題 No.353 ヘイトプラス
ユーザー mits58mits58
提出日時 2016-07-02 01:04:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 287 bytes
コンパイル時間 2,442 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-07-03 22:16:32
合計ジャッジ時間 3,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,536 KB
testcase_01 AC 109 ms
41,172 KB
testcase_02 AC 111 ms
41,444 KB
testcase_03 AC 101 ms
40,160 KB
testcase_04 AC 95 ms
39,720 KB
testcase_05 AC 109 ms
41,256 KB
testcase_06 AC 99 ms
40,004 KB
testcase_07 AC 114 ms
41,004 KB
testcase_08 AC 124 ms
41,532 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(2*a);
			else System.out.println((a*a-b*b)/(a-b));
		}
	}
}
0