結果

問題 No.445 得点
ユーザー GrenacheGrenache
提出日時 2016-11-19 09:58:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 2,892 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-06-29 20:16:19
合計ジャッジ時間 5,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,244 KB
testcase_01 AC 109 ms
41,352 KB
testcase_02 AC 100 ms
41,180 KB
testcase_03 AC 111 ms
40,216 KB
testcase_04 AC 112 ms
41,108 KB
testcase_05 AC 100 ms
40,096 KB
testcase_06 AC 113 ms
41,028 KB
testcase_07 AC 112 ms
41,220 KB
testcase_08 AC 99 ms
41,012 KB
testcase_09 AC 111 ms
41,356 KB
testcase_10 AC 111 ms
41,204 KB
testcase_11 AC 117 ms
41,192 KB
testcase_12 AC 122 ms
41,076 KB
testcase_13 AC 118 ms
41,220 KB
testcase_14 AC 111 ms
41,556 KB
testcase_15 AC 106 ms
41,240 KB
testcase_16 AC 100 ms
41,024 KB
testcase_17 AC 113 ms
41,636 KB
testcase_18 AC 110 ms
40,808 KB
testcase_19 AC 110 ms
40,992 KB
testcase_20 AC 112 ms
41,152 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