結果

問題 No.169 何分かかるの!?
ユーザー dazydazy
提出日時 2016-09-23 17:33:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 293 bytes
コンパイル時間 3,192 ms
コンパイル使用メモリ 73,932 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-11-17 19:03:53
合計ジャッジ時間 7,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,072 KB
testcase_01 AC 122 ms
41,116 KB
testcase_02 AC 120 ms
41,240 KB
testcase_03 AC 112 ms
40,224 KB
testcase_04 AC 123 ms
40,856 KB
testcase_05 AC 123 ms
41,096 KB
testcase_06 AC 122 ms
41,284 KB
testcase_07 AC 119 ms
41,160 KB
testcase_08 AC 121 ms
41,232 KB
testcase_09 AC 118 ms
41,324 KB
testcase_10 AC 104 ms
39,908 KB
testcase_11 AC 106 ms
40,080 KB
testcase_12 AC 108 ms
39,996 KB
testcase_13 AC 122 ms
41,048 KB
testcase_14 AC 122 ms
41,236 KB
testcase_15 AC 110 ms
40,208 KB
testcase_16 AC 125 ms
41,164 KB
testcase_17 AC 118 ms
40,588 KB
testcase_18 AC 123 ms
41,404 KB
testcase_19 AC 128 ms
41,104 KB
testcase_20 AC 120 ms
41,272 KB
testcase_21 AC 124 ms
41,404 KB
testcase_22 AC 118 ms
40,984 KB
testcase_23 AC 122 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int ans = 0;
        int K = scan.nextInt();
        int S = scan.nextInt();
        ans = S * 100/ (100 - K) ;
        System.out.println(ans);
    }
}
0