結果

問題 No.445 得点
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-18 22:24:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 73,672 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-11-26 10:30:47
合計ジャッジ時間 5,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,152 KB
testcase_01 AC 119 ms
41,044 KB
testcase_02 AC 115 ms
40,100 KB
testcase_03 AC 120 ms
41,356 KB
testcase_04 AC 124 ms
41,104 KB
testcase_05 AC 121 ms
41,148 KB
testcase_06 AC 119 ms
41,020 KB
testcase_07 AC 104 ms
41,664 KB
testcase_08 AC 117 ms
41,060 KB
testcase_09 AC 120 ms
41,124 KB
testcase_10 AC 122 ms
41,404 KB
testcase_11 AC 121 ms
40,996 KB
testcase_12 AC 123 ms
41,116 KB
testcase_13 AC 108 ms
40,188 KB
testcase_14 AC 121 ms
41,128 KB
testcase_15 AC 118 ms
41,224 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 118 ms
41,128 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