結果

問題 No.445 得点
ユーザー kohaku_kohaku
提出日時 2016-11-21 18:54:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 73,864 KB
実行使用メモリ 41,148 KB
最終ジャッジ日時 2024-06-29 20:19:16
合計ジャッジ時間 4,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

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;
        int d = 8+2*B;
        double e = 10*c/d;
        int f = c+(int)e;
        System.out.println(f);
    }
}
0