結果

問題 No.445 得点
ユーザー GrenacheGrenache
提出日時 2016-11-19 09:58:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 3,778 ms
コンパイル使用メモリ 72,728 KB
実行使用メモリ 56,396 KB
最終ジャッジ日時 2023-09-12 07:18:37
合計ジャッジ時間 7,066 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
56,056 KB
testcase_01 AC 119 ms
56,032 KB
testcase_02 AC 121 ms
56,132 KB
testcase_03 AC 118 ms
56,032 KB
testcase_04 AC 118 ms
56,376 KB
testcase_05 AC 120 ms
56,396 KB
testcase_06 AC 119 ms
55,772 KB
testcase_07 AC 123 ms
56,208 KB
testcase_08 AC 124 ms
56,112 KB
testcase_09 AC 121 ms
53,896 KB
testcase_10 AC 119 ms
55,980 KB
testcase_11 AC 118 ms
55,708 KB
testcase_12 AC 122 ms
55,768 KB
testcase_13 AC 117 ms
55,944 KB
testcase_14 AC 119 ms
56,100 KB
testcase_15 AC 119 ms
55,872 KB
testcase_16 AC 118 ms
56,064 KB
testcase_17 AC 119 ms
56,020 KB
testcase_18 AC 119 ms
56,064 KB
testcase_19 AC 121 ms
56,024 KB
testcase_20 AC 124 ms
55,556 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 * 10) / (8 + 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