結果

問題 No.445 得点
ユーザー tenten
提出日時 2020-10-02 11:49:10
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 3,255 ms
コンパイル使用メモリ 77,148 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-07-08 04:52:15
合計ジャッジ時間 5,383 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

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 ans = 50 * a + (int)((50 * a) / (0.8 + 0.2 * b));
        System.out.println(ans);
    }
}
0