結果

問題 No.538 N.G.S.
ユーザー mikan765mikan765
提出日時 2017-07-07 22:31:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 54,604 KB
最終ジャッジ日時 2024-10-06 10:06:09
合計ジャッジ時間 11,537 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,224 KB
testcase_01 AC 146 ms
54,412 KB
testcase_02 AC 144 ms
54,368 KB
testcase_03 AC 144 ms
54,396 KB
testcase_04 AC 145 ms
54,088 KB
testcase_05 AC 146 ms
54,424 KB
testcase_06 AC 149 ms
54,408 KB
testcase_07 AC 145 ms
54,276 KB
testcase_08 AC 144 ms
54,372 KB
testcase_09 AC 145 ms
54,100 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 145 ms
54,388 KB
testcase_13 AC 148 ms
54,472 KB
testcase_14 AC 144 ms
54,316 KB
testcase_15 AC 146 ms
54,304 KB
testcase_16 AC 147 ms
54,240 KB
testcase_17 AC 145 ms
54,236 KB
testcase_18 AC 143 ms
53,988 KB
testcase_19 AC 148 ms
53,868 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 143 ms
54,364 KB
testcase_29 AC 143 ms
54,268 KB
testcase_30 AC 142 ms
54,100 KB
testcase_31 AC 146 ms
54,292 KB
testcase_32 AC 145 ms
53,816 KB
testcase_33 AC 147 ms
54,356 KB
testcase_34 AC 146 ms
54,292 KB
testcase_35 AC 145 ms
54,272 KB
testcase_36 AC 147 ms
54,420 KB
testcase_37 AC 147 ms
53,896 KB
testcase_38 AC 146 ms
54,024 KB
testcase_39 AC 145 ms
54,336 KB
testcase_40 AC 147 ms
54,020 KB
testcase_41 AC 149 ms
54,152 KB
testcase_42 AC 146 ms
54,112 KB
testcase_43 AC 143 ms
54,240 KB
testcase_44 AC 144 ms
54,336 KB
testcase_45 AC 144 ms
54,408 KB
testcase_46 AC 145 ms
53,880 KB
testcase_47 AC 145 ms
54,440 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 142 ms
54,056 KB
testcase_52 AC 144 ms
54,220 KB
testcase_53 WA -
testcase_54 AC 145 ms
54,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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