結果

問題 No.445 得点
ユーザー samplelpmassamplelpmas
提出日時 2017-04-16 01:35:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-06-30 01:05:42
合計ジャッジ時間 4,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,388 KB
testcase_01 AC 110 ms
40,280 KB
testcase_02 AC 113 ms
41,208 KB
testcase_03 AC 99 ms
41,372 KB
testcase_04 AC 99 ms
41,336 KB
testcase_05 AC 102 ms
41,372 KB
testcase_06 AC 111 ms
41,484 KB
testcase_07 AC 101 ms
41,588 KB
testcase_08 AC 99 ms
41,436 KB
testcase_09 AC 109 ms
41,332 KB
testcase_10 AC 112 ms
41,332 KB
testcase_11 AC 109 ms
41,236 KB
testcase_12 AC 109 ms
41,556 KB
testcase_13 AC 115 ms
41,196 KB
testcase_14 AC 109 ms
41,344 KB
testcase_15 AC 97 ms
41,052 KB
testcase_16 AC 99 ms
41,276 KB
testcase_17 AC 110 ms
40,156 KB
testcase_18 AC 110 ms
41,464 KB
testcase_19 AC 125 ms
41,160 KB
testcase_20 AC 119 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        long A = sc.nextLong();
        long B = sc.nextLong();

        long score = (long) (50 * A + (50 * A / (0.8 + 0.2 * B)));

        System.out.println(score);

    }

}
0