結果

問題 No.445 得点
ユーザー GrenacheGrenache
提出日時 2016-11-18 22:22:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 599 bytes
コンパイル時間 3,565 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-05-04 20:17:59
合計ジャッジ時間 6,656 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,236 KB
testcase_01 AC 105 ms
40,152 KB
testcase_02 AC 107 ms
40,144 KB
testcase_03 AC 100 ms
39,956 KB
testcase_04 AC 110 ms
41,524 KB
testcase_05 AC 114 ms
41,368 KB
testcase_06 AC 102 ms
40,100 KB
testcase_07 AC 115 ms
41,344 KB
testcase_08 AC 105 ms
40,216 KB
testcase_09 AC 115 ms
41,180 KB
testcase_10 AC 116 ms
41,128 KB
testcase_11 AC 95 ms
40,112 KB
testcase_12 AC 99 ms
40,064 KB
testcase_13 AC 101 ms
40,080 KB
testcase_14 AC 103 ms
40,444 KB
testcase_15 AC 126 ms
41,184 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 115 ms
41,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder445 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();
		int b = sc.nextInt();

		int f = 50 * a + (int)((50 * a) / (0.8 + 0.2 * b));

		pr.println(f);

	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0