結果

問題 No.445 得点
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-18 22:24:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 3,394 ms
コンパイル使用メモリ 71,688 KB
実行使用メモリ 60,128 KB
最終ジャッジ日時 2023-08-17 13:42:09
合計ジャッジ時間 5,676 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
55,744 KB
testcase_01 AC 116 ms
56,444 KB
testcase_02 AC 117 ms
56,052 KB
testcase_03 AC 116 ms
55,736 KB
testcase_04 AC 117 ms
55,880 KB
testcase_05 AC 117 ms
56,328 KB
testcase_06 AC 117 ms
56,020 KB
testcase_07 AC 117 ms
56,004 KB
testcase_08 AC 115 ms
55,644 KB
testcase_09 AC 116 ms
55,776 KB
testcase_10 AC 118 ms
55,784 KB
testcase_11 AC 117 ms
55,908 KB
testcase_12 AC 116 ms
56,008 KB
testcase_13 AC 116 ms
56,144 KB
testcase_14 AC 115 ms
56,176 KB
testcase_15 AC 116 ms
56,340 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 115 ms
55,692 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