結果

問題 No.169 何分かかるの!?
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-05 23:33:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 308 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-07-04 02:12:05
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,152 KB
testcase_01 AC 128 ms
53,916 KB
testcase_02 AC 121 ms
54,100 KB
testcase_03 AC 112 ms
53,124 KB
testcase_04 AC 125 ms
54,108 KB
testcase_05 AC 129 ms
54,140 KB
testcase_06 AC 123 ms
53,852 KB
testcase_07 AC 123 ms
54,032 KB
testcase_08 AC 117 ms
53,620 KB
testcase_09 AC 123 ms
54,092 KB
testcase_10 AC 119 ms
54,020 KB
testcase_11 AC 123 ms
53,804 KB
testcase_12 AC 125 ms
53,928 KB
testcase_13 AC 124 ms
54,068 KB
testcase_14 AC 112 ms
53,020 KB
testcase_15 AC 121 ms
54,000 KB
testcase_16 AC 124 ms
54,108 KB
testcase_17 AC 124 ms
53,856 KB
testcase_18 AC 127 ms
54,008 KB
testcase_19 AC 123 ms
53,860 KB
testcase_20 AC 124 ms
54,164 KB
testcase_21 AC 125 ms
53,792 KB
testcase_22 AC 125 ms
53,888 KB
testcase_23 AC 129 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner (System.in);
        int k = koko.nextInt();
        int s = koko.nextInt();
        int a = (int)Math.floor(100*s/(100-k));
        System.out.println(a);
    }
}
0