結果

問題 No.445 得点
ユーザー kohaku_kohaku
提出日時 2016-11-18 22:24:26
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 73,672 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-11-26 10:30:47
合計ジャッジ時間 5,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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 c = 50*A;
        double d = c/(0.8+0.2*B);
        int f = c+(int)d;
        System.out.println(f);
    }
}
0