結果

問題 No.445 得点
ユーザー fal_rndfal_rnd
提出日時 2016-11-18 22:34:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 73,688 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-05-04 20:22:17
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,636 KB
testcase_01 AC 139 ms
41,788 KB
testcase_02 AC 134 ms
41,344 KB
testcase_03 AC 135 ms
41,344 KB
testcase_04 AC 143 ms
41,688 KB
testcase_05 AC 133 ms
41,740 KB
testcase_06 AC 135 ms
41,572 KB
testcase_07 AC 137 ms
42,132 KB
testcase_08 AC 136 ms
41,808 KB
testcase_09 AC 135 ms
41,836 KB
testcase_10 AC 134 ms
41,616 KB
testcase_11 AC 145 ms
41,616 KB
testcase_12 AC 137 ms
41,724 KB
testcase_13 AC 133 ms
41,872 KB
testcase_14 AC 132 ms
41,632 KB
testcase_15 AC 132 ms
41,272 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 132 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int n=s.nextInt(),k=s.nextInt();
		System.out.println(n*50+(int)(50.0*n/(0.2*k+0.8)));
	}
}
0