結果

問題 No.169 何分かかるの!?
ユーザー GrenacheGrenache
提出日時 2015-11-01 23:40:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 300 bytes
コンパイル時間 3,292 ms
コンパイル使用メモリ 72,496 KB
実行使用メモリ 56,172 KB
最終ジャッジ日時 2023-10-11 07:54:13
合計ジャッジ時間 7,777 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,884 KB
testcase_01 AC 126 ms
55,692 KB
testcase_02 AC 126 ms
56,112 KB
testcase_03 AC 126 ms
55,780 KB
testcase_04 AC 125 ms
55,988 KB
testcase_05 AC 126 ms
56,024 KB
testcase_06 AC 125 ms
55,620 KB
testcase_07 AC 126 ms
55,700 KB
testcase_08 AC 125 ms
55,904 KB
testcase_09 AC 124 ms
55,940 KB
testcase_10 AC 125 ms
56,000 KB
testcase_11 AC 124 ms
55,436 KB
testcase_12 AC 122 ms
55,788 KB
testcase_13 AC 122 ms
55,792 KB
testcase_14 AC 123 ms
55,792 KB
testcase_15 AC 122 ms
54,168 KB
testcase_16 AC 124 ms
56,064 KB
testcase_17 AC 124 ms
56,172 KB
testcase_18 AC 122 ms
55,808 KB
testcase_19 AC 123 ms
56,000 KB
testcase_20 AC 124 ms
56,008 KB
testcase_21 AC 124 ms
55,692 KB
testcase_22 AC 123 ms
55,616 KB
testcase_23 AC 123 ms
56,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder169 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int k = sc.nextInt();
        int s = sc.nextInt();

        System.out.println(100 * s / (100 - k));
        
        sc.close();
    }
}
0