結果

問題 No.445 得点
ユーザー darknightdarknight
提出日時 2016-11-18 22:27:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 54,056 KB
最終ジャッジ日時 2024-05-04 20:21:48
合計ジャッジ時間 5,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
41,596 KB
testcase_01 AC 117 ms
41,596 KB
testcase_02 AC 111 ms
41,396 KB
testcase_03 AC 113 ms
41,448 KB
testcase_04 AC 100 ms
41,392 KB
testcase_05 AC 95 ms
41,708 KB
testcase_06 AC 108 ms
41,324 KB
testcase_07 AC 104 ms
41,252 KB
testcase_08 AC 106 ms
41,192 KB
testcase_09 AC 109 ms
41,036 KB
testcase_10 AC 118 ms
41,232 KB
testcase_11 AC 114 ms
41,428 KB
testcase_12 AC 106 ms
41,196 KB
testcase_13 AC 92 ms
41,192 KB
testcase_14 AC 96 ms
41,620 KB
testcase_15 AC 99 ms
41,580 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 100 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
 
	Scanner sc  = new Scanner(System.in);
        
    int cnt = 0;

	int  i1 = 0 ,i2 = 0, i3 = 0;
	long L1 = 0, L2 = 0, L3 = 0;
	char ch;
	String str = "";
		
    int A  = Integer.parseInt(sc.next());
    int B  = Integer.parseInt(sc.next());

    double ans =  50 * A + (int)( ( 50 * A ) / ( 0.8 + (0.2*B)  ) )  ;


        System.out.print( (int)ans );
        System.out.println();
	}
        
}
0