結果

問題 No.169 何分かかるの!?
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-14 22:16:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-07-02 04:55:04
合計ジャッジ時間 6,536 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,088 KB
testcase_01 WA -
testcase_02 AC 145 ms
54,164 KB
testcase_03 AC 144 ms
53,932 KB
testcase_04 AC 147 ms
54,232 KB
testcase_05 AC 145 ms
53,984 KB
testcase_06 AC 147 ms
54,244 KB
testcase_07 AC 148 ms
54,276 KB
testcase_08 AC 145 ms
41,388 KB
testcase_09 WA -
testcase_10 AC 146 ms
42,028 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 145 ms
42,008 KB
testcase_14 AC 143 ms
41,504 KB
testcase_15 AC 145 ms
41,644 KB
testcase_16 AC 145 ms
41,792 KB
testcase_17 AC 144 ms
41,648 KB
testcase_18 AC 144 ms
41,436 KB
testcase_19 AC 147 ms
41,564 KB
testcase_20 AC 144 ms
41,548 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 143 ms
41,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Y169{
    public static void main(String args[]){
        Scanner sc=new Scanner(System.in);
        double k=sc.nextDouble();
        double s=sc.nextDouble();
        System.out.printf("%.0f",s/(100-k)*100); 
    }
}
0