結果

問題 No.445 得点
ユーザー GoryudyumaGoryudyuma
提出日時 2017-03-15 08:52:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 75,408 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-07-03 23:09:54
合計ジャッジ時間 5,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,128 KB
testcase_01 AC 117 ms
41,284 KB
testcase_02 AC 100 ms
40,048 KB
testcase_03 AC 111 ms
41,424 KB
testcase_04 AC 111 ms
41,080 KB
testcase_05 AC 116 ms
41,316 KB
testcase_06 AC 115 ms
40,648 KB
testcase_07 AC 115 ms
41,424 KB
testcase_08 AC 102 ms
39,976 KB
testcase_09 AC 113 ms
41,340 KB
testcase_10 AC 101 ms
39,804 KB
testcase_11 AC 117 ms
41,248 KB
testcase_12 AC 111 ms
41,412 KB
testcase_13 AC 100 ms
39,880 KB
testcase_14 AC 101 ms
40,112 KB
testcase_15 AC 114 ms
41,344 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 107 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
        public static void main(String args[]) {
                try (Scanner sc = new Scanner(System.in)) {
                        int N = sc.nextInt(), K = sc.nextInt();
                        System.out.println(50 * N + (int)(50*N/(0.8+0.2*K)));
                }
        }
}
0