結果
問題 |
No.445 得点
|
ユーザー |
|
提出日時 | 2016-11-19 09:58:31 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
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); } } }