結果

問題 No.445 得点
ユーザー darknightdarknight
提出日時 2016-11-18 22:27:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-11-26 10:31:37
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,848 KB
testcase_01 AC 125 ms
41,252 KB
testcase_02 AC 126 ms
41,248 KB
testcase_03 AC 131 ms
40,968 KB
testcase_04 AC 128 ms
41,300 KB
testcase_05 AC 128 ms
41,000 KB
testcase_06 AC 128 ms
40,800 KB
testcase_07 AC 127 ms
41,524 KB
testcase_08 AC 130 ms
41,492 KB
testcase_09 AC 128 ms
41,356 KB
testcase_10 AC 115 ms
40,116 KB
testcase_11 AC 127 ms
41,224 KB
testcase_12 AC 130 ms
41,224 KB
testcase_13 AC 113 ms
39,760 KB
testcase_14 AC 128 ms
40,792 KB
testcase_15 AC 130 ms
41,388 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 127 ms
40,840 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