結果

問題 No.169 何分かかるの!?
ユーザー rf141rf141
提出日時 2015-08-10 19:08:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 243 bytes
コンパイル時間 2,874 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-07-18 06:33:47
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,112 KB
testcase_01 AC 111 ms
53,840 KB
testcase_02 AC 112 ms
54,100 KB
testcase_03 AC 118 ms
53,744 KB
testcase_04 AC 109 ms
52,696 KB
testcase_05 AC 97 ms
52,536 KB
testcase_06 AC 110 ms
53,988 KB
testcase_07 AC 107 ms
53,968 KB
testcase_08 AC 98 ms
52,988 KB
testcase_09 AC 109 ms
54,072 KB
testcase_10 AC 100 ms
52,684 KB
testcase_11 AC 100 ms
53,092 KB
testcase_12 AC 118 ms
54,056 KB
testcase_13 AC 111 ms
54,012 KB
testcase_14 AC 109 ms
53,932 KB
testcase_15 AC 121 ms
54,104 KB
testcase_16 AC 103 ms
52,592 KB
testcase_17 AC 111 ms
53,848 KB
testcase_18 AC 109 ms
53,860 KB
testcase_19 AC 102 ms
52,964 KB
testcase_20 AC 106 ms
52,596 KB
testcase_21 AC 95 ms
52,580 KB
testcase_22 AC 104 ms
52,988 KB
testcase_23 AC 111 ms
54,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class WhatMin {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int K = scan.nextInt(), S = scan.nextInt();
        System.out.println(100 * S / (100 - K));
    }
}
0