結果

問題 No.445 得点
ユーザー fal_rndfal_rnd
提出日時 2016-11-18 22:34:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 1,882 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-11-26 10:32:07
合計ジャッジ時間 5,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,000 KB
testcase_01 AC 131 ms
53,976 KB
testcase_02 AC 132 ms
54,116 KB
testcase_03 AC 136 ms
53,996 KB
testcase_04 AC 136 ms
53,836 KB
testcase_05 AC 134 ms
53,852 KB
testcase_06 AC 127 ms
54,112 KB
testcase_07 AC 126 ms
53,848 KB
testcase_08 AC 129 ms
54,056 KB
testcase_09 AC 129 ms
54,084 KB
testcase_10 AC 130 ms
54,104 KB
testcase_11 AC 125 ms
53,932 KB
testcase_12 AC 123 ms
54,116 KB
testcase_13 AC 125 ms
54,036 KB
testcase_14 AC 125 ms
54,104 KB
testcase_15 AC 127 ms
54,132 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 130 ms
54,236 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