結果

問題 No.169 何分かかるの!?
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-07 00:43:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 345 bytes
コンパイル時間 2,377 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 54,112 KB
最終ジャッジ日時 2024-06-06 16:31:00
合計ジャッジ時間 6,742 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,864 KB
testcase_01 AC 111 ms
52,716 KB
testcase_02 AC 117 ms
53,896 KB
testcase_03 AC 113 ms
53,956 KB
testcase_04 AC 113 ms
53,804 KB
testcase_05 AC 114 ms
53,860 KB
testcase_06 AC 124 ms
54,108 KB
testcase_07 AC 118 ms
53,996 KB
testcase_08 AC 114 ms
53,876 KB
testcase_09 AC 118 ms
53,860 KB
testcase_10 AC 108 ms
53,692 KB
testcase_11 AC 110 ms
53,900 KB
testcase_12 AC 110 ms
53,988 KB
testcase_13 AC 101 ms
52,400 KB
testcase_14 AC 102 ms
52,692 KB
testcase_15 AC 111 ms
53,876 KB
testcase_16 AC 110 ms
53,596 KB
testcase_17 AC 114 ms
54,068 KB
testcase_18 AC 103 ms
52,844 KB
testcase_19 AC 105 ms
52,828 KB
testcase_20 AC 116 ms
54,112 KB
testcase_21 AC 103 ms
52,768 KB
testcase_22 AC 129 ms
53,800 KB
testcase_23 AC 122 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int k = in.nextInt();
        int s = in.nextInt();

        System.out.println(s*100/(100-k));

        in.close();
    }
}
0