結果

問題 No.445 得点
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-18 22:24:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-05-04 20:20:51
合計ジャッジ時間 5,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,564 KB
testcase_01 AC 99 ms
39,976 KB
testcase_02 AC 101 ms
40,276 KB
testcase_03 AC 111 ms
41,120 KB
testcase_04 AC 94 ms
39,848 KB
testcase_05 AC 110 ms
41,156 KB
testcase_06 AC 112 ms
41,256 KB
testcase_07 AC 113 ms
39,908 KB
testcase_08 AC 102 ms
40,356 KB
testcase_09 AC 111 ms
40,260 KB
testcase_10 AC 102 ms
40,264 KB
testcase_11 AC 115 ms
41,048 KB
testcase_12 AC 124 ms
41,020 KB
testcase_13 AC 115 ms
41,012 KB
testcase_14 AC 117 ms
41,228 KB
testcase_15 AC 117 ms
40,032 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 101 ms
40,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int A = sc.nextInt();
        int B = sc.nextInt();
        int c = 50*A;
        double d = c/(0.8+0.2*B);
        int f = c+(int)d;
        System.out.println(f);
    }
}
0