結果

問題 No.169 何分かかるの!?
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 07:31:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 261 bytes
コンパイル時間 5,857 ms
コンパイル使用メモリ 69,772 KB
実行使用メモリ 39,888 KB
最終ジャッジ日時 2023-08-17 04:15:04
合計ジャッジ時間 7,591 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
39,776 KB
testcase_01 AC 123 ms
39,572 KB
testcase_02 AC 123 ms
39,552 KB
testcase_03 AC 126 ms
39,464 KB
testcase_04 AC 122 ms
39,308 KB
testcase_05 AC 125 ms
39,224 KB
testcase_06 AC 126 ms
39,272 KB
testcase_07 AC 124 ms
39,088 KB
testcase_08 AC 124 ms
39,708 KB
testcase_09 AC 123 ms
39,668 KB
testcase_10 AC 123 ms
39,020 KB
testcase_11 AC 126 ms
39,252 KB
testcase_12 AC 124 ms
39,060 KB
testcase_13 AC 123 ms
39,016 KB
testcase_14 AC 121 ms
39,640 KB
testcase_15 AC 123 ms
39,884 KB
testcase_16 AC 125 ms
39,888 KB
testcase_17 AC 125 ms
39,420 KB
testcase_18 AC 125 ms
39,160 KB
testcase_19 AC 123 ms
39,240 KB
testcase_20 AC 124 ms
39,260 KB
testcase_21 AC 124 ms
39,852 KB
testcase_22 AC 121 ms
39,504 KB
testcase_23 AC 121 ms
39,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int K = sc.nextInt();
        int S = sc.nextInt();
        int r = S*100/(100-K);
        System.out.println(r);
    }
}
0