結果

問題 No.169 何分かかるの!?
ユーザー tentententen
提出日時 2020-11-10 17:21:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 1,000 ms
コード長 247 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 70,788 KB
実行使用メモリ 56,832 KB
最終ジャッジ日時 2023-09-29 23:41:01
合計ジャッジ時間 5,586 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
56,308 KB
testcase_01 AC 109 ms
56,832 KB
testcase_02 AC 104 ms
55,828 KB
testcase_03 AC 107 ms
56,012 KB
testcase_04 AC 107 ms
56,140 KB
testcase_05 AC 103 ms
55,776 KB
testcase_06 AC 112 ms
55,932 KB
testcase_07 AC 109 ms
56,484 KB
testcase_08 AC 106 ms
55,944 KB
testcase_09 AC 108 ms
56,132 KB
testcase_10 AC 107 ms
55,856 KB
testcase_11 AC 104 ms
55,936 KB
testcase_12 AC 103 ms
55,764 KB
testcase_13 AC 107 ms
55,664 KB
testcase_14 AC 108 ms
55,860 KB
testcase_15 AC 104 ms
56,012 KB
testcase_16 AC 107 ms
55,892 KB
testcase_17 AC 105 ms
56,232 KB
testcase_18 AC 112 ms
56,652 KB
testcase_19 AC 104 ms
55,884 KB
testcase_20 AC 103 ms
56,008 KB
testcase_21 AC 103 ms
56,300 KB
testcase_22 AC 104 ms
55,676 KB
testcase_23 AC 105 ms
55,860 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();
        System.out.println(s * 100 / (100 - k));
    }
}
0