結果

問題 No.169 何分かかるの!?
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-14 22:23:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 233 bytes
コンパイル時間 2,788 ms
コンパイル使用メモリ 76,388 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-07-02 04:59:32
合計ジャッジ時間 6,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,212 KB
testcase_01 AC 130 ms
40,884 KB
testcase_02 AC 129 ms
41,172 KB
testcase_03 AC 129 ms
41,076 KB
testcase_04 AC 130 ms
41,184 KB
testcase_05 AC 115 ms
40,172 KB
testcase_06 AC 132 ms
41,232 KB
testcase_07 AC 129 ms
40,780 KB
testcase_08 AC 132 ms
40,920 KB
testcase_09 AC 115 ms
40,072 KB
testcase_10 AC 130 ms
41,132 KB
testcase_11 AC 131 ms
40,744 KB
testcase_12 AC 127 ms
41,056 KB
testcase_13 AC 129 ms
40,948 KB
testcase_14 AC 131 ms
40,896 KB
testcase_15 AC 116 ms
39,740 KB
testcase_16 AC 130 ms
40,920 KB
testcase_17 AC 130 ms
40,792 KB
testcase_18 AC 127 ms
40,984 KB
testcase_19 AC 129 ms
40,984 KB
testcase_20 AC 130 ms
41,192 KB
testcase_21 AC 114 ms
39,744 KB
testcase_22 AC 131 ms
41,304 KB
testcase_23 AC 127 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Y169{
    public static void main(String args[]){
        Scanner sc=new Scanner(System.in);
        int k=sc.nextInt();
        int s=sc.nextInt();
        System.out.println(s*100/(100-k)); 
    }
}
0