結果

問題 No.169 何分かかるの!?
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 07:31:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 261 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-11-25 21:51:27
合計ジャッジ時間 5,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,372 KB
testcase_01 AC 105 ms
40,192 KB
testcase_02 AC 118 ms
41,324 KB
testcase_03 AC 120 ms
41,152 KB
testcase_04 AC 118 ms
41,236 KB
testcase_05 AC 106 ms
40,520 KB
testcase_06 AC 116 ms
41,392 KB
testcase_07 AC 106 ms
39,964 KB
testcase_08 AC 105 ms
40,136 KB
testcase_09 AC 104 ms
39,956 KB
testcase_10 AC 108 ms
40,884 KB
testcase_11 AC 113 ms
41,252 KB
testcase_12 AC 125 ms
41,136 KB
testcase_13 AC 123 ms
41,228 KB
testcase_14 AC 113 ms
40,916 KB
testcase_15 AC 113 ms
41,172 KB
testcase_16 AC 117 ms
41,580 KB
testcase_17 AC 109 ms
39,968 KB
testcase_18 AC 126 ms
41,356 KB
testcase_19 AC 121 ms
41,348 KB
testcase_20 AC 123 ms
41,604 KB
testcase_21 AC 120 ms
40,996 KB
testcase_22 AC 123 ms
41,336 KB
testcase_23 AC 108 ms
39,856 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