結果

問題 No.169 何分かかるの!?
ユーザー dazydazy
提出日時 2016-09-23 17:33:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 293 bytes
コンパイル時間 2,967 ms
コンパイル使用メモリ 71,320 KB
実行使用メモリ 57,664 KB
最終ジャッジ日時 2023-08-11 05:33:42
合計ジャッジ時間 7,128 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
57,664 KB
testcase_01 AC 121 ms
38,976 KB
testcase_02 AC 118 ms
39,192 KB
testcase_03 AC 119 ms
39,040 KB
testcase_04 AC 119 ms
39,132 KB
testcase_05 AC 118 ms
39,168 KB
testcase_06 AC 121 ms
39,128 KB
testcase_07 AC 119 ms
38,956 KB
testcase_08 AC 121 ms
39,680 KB
testcase_09 AC 118 ms
39,184 KB
testcase_10 AC 117 ms
39,112 KB
testcase_11 AC 119 ms
38,988 KB
testcase_12 AC 120 ms
39,244 KB
testcase_13 AC 122 ms
38,960 KB
testcase_14 AC 120 ms
39,200 KB
testcase_15 AC 123 ms
39,292 KB
testcase_16 AC 120 ms
38,968 KB
testcase_17 AC 118 ms
39,220 KB
testcase_18 AC 119 ms
39,300 KB
testcase_19 AC 118 ms
38,988 KB
testcase_20 AC 120 ms
39,272 KB
testcase_21 AC 120 ms
38,944 KB
testcase_22 AC 119 ms
38,932 KB
testcase_23 AC 120 ms
39,800 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