結果

問題 No.538 N.G.S.
ユーザー GrenacheGrenache
提出日時 2017-06-30 22:48:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 2,944 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 55,828 KB
最終ジャッジ日時 2024-10-04 20:47:46
合計ジャッジ時間 10,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,440 KB
testcase_01 AC 112 ms
41,368 KB
testcase_02 AC 106 ms
41,260 KB
testcase_03 AC 110 ms
41,180 KB
testcase_04 AC 107 ms
41,312 KB
testcase_05 AC 111 ms
41,304 KB
testcase_06 AC 113 ms
41,396 KB
testcase_07 WA -
testcase_08 AC 114 ms
41,148 KB
testcase_09 AC 117 ms
41,352 KB
testcase_10 AC 105 ms
41,208 KB
testcase_11 AC 115 ms
41,020 KB
testcase_12 AC 103 ms
41,388 KB
testcase_13 AC 113 ms
41,156 KB
testcase_14 WA -
testcase_15 AC 112 ms
41,252 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 108 ms
41,236 KB
testcase_19 AC 120 ms
41,268 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 116 ms
41,548 KB
testcase_29 AC 108 ms
41,336 KB
testcase_30 AC 102 ms
41,444 KB
testcase_31 AC 112 ms
41,280 KB
testcase_32 AC 118 ms
41,280 KB
testcase_33 AC 118 ms
41,148 KB
testcase_34 AC 111 ms
41,656 KB
testcase_35 AC 114 ms
41,148 KB
testcase_36 AC 116 ms
41,388 KB
testcase_37 AC 125 ms
41,464 KB
testcase_38 AC 121 ms
41,268 KB
testcase_39 AC 104 ms
41,000 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 114 ms
41,668 KB
testcase_45 AC 108 ms
41,564 KB
testcase_46 WA -
testcase_47 AC 115 ms
41,096 KB
testcase_48 AC 114 ms
41,292 KB
testcase_49 AC 116 ms
41,156 KB
testcase_50 AC 115 ms
41,384 KB
testcase_51 AC 117 ms
41,308 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder538 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int b1 = sc.nextInt();
		int b2 = sc.nextInt();
		int b3 = sc.nextInt();

		long r1 = b2 - b3;
		long r2 = b1 - b2;
		long d1 = b3 * b1 - b2 * b2;
//		long d2 = b2;

		if (r2 == 0) {
			pr.println(b3);
		} else {
			long d4 = (r1 * b3 + d1) / r2;
			pr.println(d4);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0