結果

問題 No.169 何分かかるの!?
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-20 18:24:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 569 bytes
コンパイル時間 3,884 ms
コンパイル使用メモリ 75,196 KB
実行使用メモリ 36,976 KB
最終ジャッジ日時 2024-07-04 18:29:42
合計ジャッジ時間 4,895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,784 KB
testcase_01 AC 47 ms
36,960 KB
testcase_02 AC 47 ms
36,884 KB
testcase_03 AC 47 ms
36,440 KB
testcase_04 AC 48 ms
36,864 KB
testcase_05 AC 51 ms
36,780 KB
testcase_06 AC 51 ms
36,764 KB
testcase_07 AC 50 ms
36,840 KB
testcase_08 AC 49 ms
36,756 KB
testcase_09 AC 49 ms
36,848 KB
testcase_10 AC 46 ms
36,976 KB
testcase_11 AC 48 ms
36,552 KB
testcase_12 AC 49 ms
36,548 KB
testcase_13 AC 49 ms
36,736 KB
testcase_14 AC 48 ms
36,460 KB
testcase_15 AC 49 ms
36,956 KB
testcase_16 AC 48 ms
36,504 KB
testcase_17 AC 49 ms
36,616 KB
testcase_18 AC 47 ms
36,476 KB
testcase_19 AC 46 ms
36,968 KB
testcase_20 AC 46 ms
36,548 KB
testcase_21 AC 47 ms
36,848 KB
testcase_22 AC 47 ms
36,932 KB
testcase_23 AC 48 ms
36,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No169 {

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            double K = Integer.parseInt(br.readLine());
            double S = Integer.parseInt(br.readLine());
            int full = (int) ((100 * S) / (100 - K));

            System.out.println(full);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

}
0