結果

問題 No.445 得点
ユーザー GrenacheGrenache
提出日時 2016-11-18 22:22:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 599 bytes
コンパイル時間 3,616 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-11-26 10:28:06
合計ジャッジ時間 6,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,996 KB
testcase_01 AC 127 ms
53,940 KB
testcase_02 AC 130 ms
53,984 KB
testcase_03 AC 124 ms
54,164 KB
testcase_04 AC 122 ms
54,004 KB
testcase_05 AC 125 ms
54,140 KB
testcase_06 AC 127 ms
54,128 KB
testcase_07 AC 124 ms
54,084 KB
testcase_08 AC 124 ms
54,148 KB
testcase_09 AC 128 ms
53,984 KB
testcase_10 AC 126 ms
53,832 KB
testcase_11 AC 126 ms
53,864 KB
testcase_12 AC 125 ms
54,132 KB
testcase_13 AC 127 ms
54,132 KB
testcase_14 AC 127 ms
53,864 KB
testcase_15 AC 126 ms
53,968 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 128 ms
54,240 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