結果

問題 No.445 得点
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-02 19:05:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 72,400 KB
実行使用メモリ 57,600 KB
最終ジャッジ日時 2023-09-12 08:04:09
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
55,872 KB
testcase_01 AC 136 ms
55,872 KB
testcase_02 AC 134 ms
55,612 KB
testcase_03 AC 134 ms
56,368 KB
testcase_04 AC 133 ms
56,004 KB
testcase_05 AC 133 ms
55,820 KB
testcase_06 AC 132 ms
55,904 KB
testcase_07 AC 132 ms
55,952 KB
testcase_08 AC 133 ms
56,072 KB
testcase_09 AC 133 ms
56,344 KB
testcase_10 AC 135 ms
56,184 KB
testcase_11 AC 138 ms
55,752 KB
testcase_12 AC 135 ms
56,384 KB
testcase_13 AC 137 ms
55,548 KB
testcase_14 AC 136 ms
57,600 KB
testcase_15 AC 136 ms
56,420 KB
testcase_16 AC 133 ms
55,856 KB
testcase_17 AC 134 ms
55,760 KB
testcase_18 AC 133 ms
55,972 KB
testcase_19 AC 132 ms
55,920 KB
testcase_20 AC 133 ms
56,612 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