結果

問題 No.445 得点
ユーザー GoryudyumaGoryudyuma
提出日時 2017-03-15 08:52:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 4,057 ms
コンパイル使用メモリ 72,136 KB
実行使用メモリ 56,200 KB
最終ジャッジ日時 2023-09-17 00:47:29
合計ジャッジ時間 6,158 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
55,956 KB
testcase_01 AC 121 ms
55,536 KB
testcase_02 AC 121 ms
56,200 KB
testcase_03 AC 120 ms
55,716 KB
testcase_04 AC 119 ms
55,664 KB
testcase_05 AC 121 ms
55,968 KB
testcase_06 AC 120 ms
55,956 KB
testcase_07 AC 120 ms
55,916 KB
testcase_08 AC 121 ms
56,140 KB
testcase_09 AC 122 ms
55,844 KB
testcase_10 AC 122 ms
56,004 KB
testcase_11 AC 119 ms
55,580 KB
testcase_12 AC 122 ms
56,164 KB
testcase_13 AC 123 ms
56,148 KB
testcase_14 AC 123 ms
55,584 KB
testcase_15 AC 121 ms
56,068 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 121 ms
56,000 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