結果

問題 No.538 N.G.S.
ユーザー mikan765mikan765
提出日時 2017-07-07 22:45:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 2,382 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-09-25 00:15:19
合計ジャッジ時間 10,934 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,172 KB
testcase_01 AC 131 ms
54,120 KB
testcase_02 AC 132 ms
54,260 KB
testcase_03 AC 131 ms
53,936 KB
testcase_04 AC 133 ms
54,076 KB
testcase_05 AC 131 ms
54,024 KB
testcase_06 AC 132 ms
54,072 KB
testcase_07 AC 123 ms
53,080 KB
testcase_08 AC 132 ms
53,940 KB
testcase_09 AC 133 ms
54,060 KB
testcase_10 AC 134 ms
54,360 KB
testcase_11 AC 133 ms
54,096 KB
testcase_12 AC 132 ms
54,092 KB
testcase_13 AC 136 ms
54,124 KB
testcase_14 AC 134 ms
53,692 KB
testcase_15 AC 133 ms
54,208 KB
testcase_16 AC 133 ms
54,176 KB
testcase_17 AC 131 ms
53,932 KB
testcase_18 AC 136 ms
53,928 KB
testcase_19 AC 134 ms
53,924 KB
testcase_20 AC 138 ms
54,132 KB
testcase_21 AC 135 ms
53,808 KB
testcase_22 AC 137 ms
53,968 KB
testcase_23 AC 133 ms
53,992 KB
testcase_24 AC 135 ms
53,956 KB
testcase_25 AC 132 ms
54,004 KB
testcase_26 AC 135 ms
54,304 KB
testcase_27 AC 139 ms
54,204 KB
testcase_28 AC 135 ms
54,372 KB
testcase_29 AC 135 ms
54,240 KB
testcase_30 AC 136 ms
53,828 KB
testcase_31 AC 134 ms
54,020 KB
testcase_32 AC 132 ms
54,288 KB
testcase_33 AC 135 ms
53,836 KB
testcase_34 AC 132 ms
54,200 KB
testcase_35 AC 132 ms
54,180 KB
testcase_36 AC 133 ms
54,212 KB
testcase_37 AC 130 ms
54,100 KB
testcase_38 AC 130 ms
54,256 KB
testcase_39 AC 138 ms
54,040 KB
testcase_40 AC 133 ms
54,116 KB
testcase_41 AC 134 ms
53,740 KB
testcase_42 AC 133 ms
53,872 KB
testcase_43 AC 135 ms
54,040 KB
testcase_44 AC 136 ms
53,940 KB
testcase_45 AC 135 ms
54,204 KB
testcase_46 AC 133 ms
54,408 KB
testcase_47 AC 132 ms
53,824 KB
testcase_48 AC 131 ms
54,068 KB
testcase_49 AC 134 ms
54,224 KB
testcase_50 AC 136 ms
54,048 KB
testcase_51 AC 137 ms
53,976 KB
testcase_52 AC 133 ms
53,800 KB
testcase_53 AC 133 ms
54,200 KB
testcase_54 AC 136 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Arrays;

public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		long a1 = sc.nextLong();
		long a2 = sc.nextLong();
		long a3 = sc.nextLong();
		System.out.println((a3*(a3-a1)+a2*(a2-a3))/(a2-a1));
	}
}
0