結果

問題 No.445 得点
ユーザー darknightdarknight
提出日時 2016-11-18 22:27:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 71,936 KB
実行使用メモリ 56,096 KB
最終ジャッジ日時 2023-08-17 13:43:00
合計ジャッジ時間 5,708 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
56,092 KB
testcase_01 AC 119 ms
55,448 KB
testcase_02 AC 119 ms
55,384 KB
testcase_03 AC 118 ms
55,632 KB
testcase_04 AC 117 ms
55,572 KB
testcase_05 AC 119 ms
55,896 KB
testcase_06 AC 118 ms
55,792 KB
testcase_07 AC 119 ms
56,092 KB
testcase_08 AC 120 ms
55,932 KB
testcase_09 AC 117 ms
55,696 KB
testcase_10 AC 117 ms
55,664 KB
testcase_11 AC 120 ms
55,832 KB
testcase_12 AC 119 ms
55,632 KB
testcase_13 AC 121 ms
56,096 KB
testcase_14 AC 120 ms
55,888 KB
testcase_15 AC 119 ms
55,908 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 121 ms
55,900 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