結果

問題 No.538 N.G.S.
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-16 20:31:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 367 bytes
コンパイル時間 3,523 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 56,164 KB
最終ジャッジ日時 2024-06-22 04:21:12
合計ジャッジ時間 10,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,996 KB
testcase_01 AC 105 ms
52,944 KB
testcase_02 AC 115 ms
54,040 KB
testcase_03 AC 118 ms
54,052 KB
testcase_04 AC 102 ms
52,980 KB
testcase_05 AC 114 ms
53,872 KB
testcase_06 AC 102 ms
53,104 KB
testcase_07 AC 101 ms
52,724 KB
testcase_08 AC 114 ms
54,092 KB
testcase_09 AC 100 ms
52,532 KB
testcase_10 AC 102 ms
52,976 KB
testcase_11 AC 113 ms
54,304 KB
testcase_12 AC 113 ms
53,872 KB
testcase_13 AC 114 ms
54,016 KB
testcase_14 AC 115 ms
53,960 KB
testcase_15 AC 116 ms
53,936 KB
testcase_16 AC 112 ms
54,012 KB
testcase_17 AC 110 ms
53,144 KB
testcase_18 AC 100 ms
52,744 KB
testcase_19 AC 105 ms
53,152 KB
testcase_20 AC 112 ms
53,852 KB
testcase_21 AC 117 ms
54,128 KB
testcase_22 AC 115 ms
54,284 KB
testcase_23 AC 109 ms
53,572 KB
testcase_24 AC 104 ms
52,928 KB
testcase_25 AC 115 ms
54,120 KB
testcase_26 AC 115 ms
54,108 KB
testcase_27 AC 105 ms
52,980 KB
testcase_28 AC 115 ms
54,096 KB
testcase_29 AC 102 ms
52,880 KB
testcase_30 AC 115 ms
53,964 KB
testcase_31 AC 119 ms
54,352 KB
testcase_32 AC 117 ms
54,056 KB
testcase_33 AC 104 ms
53,040 KB
testcase_34 AC 118 ms
54,068 KB
testcase_35 AC 102 ms
52,996 KB
testcase_36 AC 113 ms
53,956 KB
testcase_37 AC 106 ms
53,076 KB
testcase_38 AC 109 ms
52,760 KB
testcase_39 AC 109 ms
53,032 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 105 ms
53,348 KB
testcase_45 AC 103 ms
52,944 KB
testcase_46 AC 116 ms
54,056 KB
testcase_47 AC 104 ms
52,744 KB
testcase_48 AC 116 ms
54,144 KB
testcase_49 WA -
testcase_50 AC 117 ms
54,308 KB
testcase_51 AC 115 ms
54,132 KB
testcase_52 AC 103 ms
53,048 KB
testcase_53 AC 112 ms
54,184 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No538 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long b1 = sc.nextLong();
		long b2 = sc.nextLong();
		long b3 = sc.nextLong();
		long rbunbo,rbunshi,d;
		rbunbo = b2 - b1;
		rbunshi = b3 - b2;
		d = b2 - b1 * rbunshi / rbunbo;
		
		System.out.println(b3 * rbunshi / rbunbo + d);
	}
}
0