結果

問題 No.169 何分かかるの!?
ユーザー kiridarumakiridaruma
提出日時 2015-08-10 16:24:25
言語 Java19
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 293 bytes
コンパイル時間 1,956 ms
コンパイル使用メモリ 71,184 KB
実行使用メモリ 56,324 KB
最終ジャッジ日時 2023-09-25 07:53:35
合計ジャッジ時間 6,327 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
55,704 KB
testcase_01 AC 124 ms
56,268 KB
testcase_02 AC 125 ms
55,860 KB
testcase_03 AC 126 ms
55,988 KB
testcase_04 AC 125 ms
56,272 KB
testcase_05 AC 125 ms
55,996 KB
testcase_06 AC 124 ms
55,712 KB
testcase_07 AC 122 ms
56,112 KB
testcase_08 AC 122 ms
56,136 KB
testcase_09 AC 122 ms
55,932 KB
testcase_10 AC 122 ms
55,556 KB
testcase_11 AC 128 ms
55,820 KB
testcase_12 AC 123 ms
55,812 KB
testcase_13 AC 121 ms
55,900 KB
testcase_14 AC 123 ms
54,236 KB
testcase_15 AC 122 ms
56,192 KB
testcase_16 AC 124 ms
56,324 KB
testcase_17 AC 127 ms
55,756 KB
testcase_18 AC 126 ms
55,860 KB
testcase_19 AC 128 ms
55,932 KB
testcase_20 AC 126 ms
55,808 KB
testcase_21 AC 125 ms
56,140 KB
testcase_22 AC 125 ms
55,916 KB
testcase_23 AC 128 ms
55,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class yuki_169{

    public static void main(String args[]){

        Scanner scan = new Scanner(System.in);
        int parcent = scan.nextInt();
        int min = scan.nextInt();

        int ans = min * 100 / (100 - parcent);

        System.out.println(ans);

    }

}
0