結果

問題 No.445 得点
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-02 19:05:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 73,732 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-06-29 20:55:11
合計ジャッジ時間 5,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,384 KB
testcase_01 AC 142 ms
41,400 KB
testcase_02 AC 138 ms
41,540 KB
testcase_03 AC 143 ms
41,328 KB
testcase_04 AC 142 ms
41,312 KB
testcase_05 AC 141 ms
41,428 KB
testcase_06 AC 140 ms
41,392 KB
testcase_07 AC 133 ms
41,216 KB
testcase_08 AC 139 ms
41,468 KB
testcase_09 AC 142 ms
41,304 KB
testcase_10 AC 142 ms
41,292 KB
testcase_11 AC 144 ms
41,320 KB
testcase_12 AC 144 ms
41,380 KB
testcase_13 AC 142 ms
41,312 KB
testcase_14 AC 138 ms
41,504 KB
testcase_15 AC 138 ms
41,344 KB
testcase_16 AC 134 ms
41,016 KB
testcase_17 AC 144 ms
41,596 KB
testcase_18 AC 140 ms
41,424 KB
testcase_19 AC 139 ms
41,492 KB
testcase_20 AC 137 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question445
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int     n = scan.nextInt();
		double  k = scan.nextDouble();
		

		System.out.println((int)(50*n+((50*n)/(0.8+(0.2*k)))));
	}
}
0