結果

問題 No.538 N.G.S.
ユーザー tentententen
提出日時 2020-09-10 08:31:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 78,076 KB
実行使用メモリ 54,604 KB
最終ジャッジ日時 2024-06-01 09:37:13
合計ジャッジ時間 11,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,232 KB
testcase_01 AC 134 ms
54,140 KB
testcase_02 AC 134 ms
54,284 KB
testcase_03 AC 132 ms
41,044 KB
testcase_04 WA -
testcase_05 AC 137 ms
41,424 KB
testcase_06 AC 133 ms
41,552 KB
testcase_07 AC 133 ms
41,648 KB
testcase_08 AC 137 ms
41,624 KB
testcase_09 WA -
testcase_10 AC 134 ms
40,840 KB
testcase_11 AC 137 ms
41,280 KB
testcase_12 AC 122 ms
39,972 KB
testcase_13 AC 132 ms
41,252 KB
testcase_14 AC 132 ms
41,680 KB
testcase_15 AC 122 ms
39,816 KB
testcase_16 WA -
testcase_17 AC 134 ms
41,344 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 138 ms
41,256 KB
testcase_21 AC 134 ms
41,200 KB
testcase_22 AC 134 ms
41,400 KB
testcase_23 AC 133 ms
41,380 KB
testcase_24 AC 138 ms
41,628 KB
testcase_25 AC 136 ms
41,652 KB
testcase_26 AC 137 ms
41,404 KB
testcase_27 AC 134 ms
41,712 KB
testcase_28 AC 134 ms
41,380 KB
testcase_29 AC 132 ms
41,584 KB
testcase_30 AC 136 ms
41,504 KB
testcase_31 AC 138 ms
41,460 KB
testcase_32 AC 138 ms
41,584 KB
testcase_33 AC 136 ms
41,260 KB
testcase_34 AC 135 ms
41,504 KB
testcase_35 AC 132 ms
41,488 KB
testcase_36 AC 120 ms
39,888 KB
testcase_37 AC 134 ms
41,452 KB
testcase_38 AC 139 ms
41,424 KB
testcase_39 AC 138 ms
41,148 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 135 ms
41,520 KB
testcase_45 AC 135 ms
41,100 KB
testcase_46 AC 132 ms
41,008 KB
testcase_47 AC 134 ms
41,196 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 135 ms
41,364 KB
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long a = sc.nextInt();
    	long b = sc.nextInt();
    	long c = sc.nextInt();
    	double d = (b * b - a * c) / (b - a);
    	double r = (b - d) / a;
    	long ans = (long)(c * r + d);
    	System.out.println(ans);
    }
}
0