結果

問題 No.169 何分かかるの!?
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-14 22:16:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 3,510 ms
コンパイル使用メモリ 72,124 KB
実行使用メモリ 58,324 KB
最終ジャッジ日時 2023-09-14 22:17:09
合計ジャッジ時間 8,515 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
56,148 KB
testcase_01 WA -
testcase_02 AC 140 ms
56,228 KB
testcase_03 AC 144 ms
56,172 KB
testcase_04 AC 143 ms
55,664 KB
testcase_05 AC 140 ms
56,212 KB
testcase_06 AC 141 ms
56,024 KB
testcase_07 AC 143 ms
55,752 KB
testcase_08 AC 141 ms
56,240 KB
testcase_09 WA -
testcase_10 AC 143 ms
55,928 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 143 ms
55,932 KB
testcase_14 AC 142 ms
56,096 KB
testcase_15 AC 139 ms
56,664 KB
testcase_16 AC 139 ms
55,948 KB
testcase_17 AC 140 ms
56,164 KB
testcase_18 AC 141 ms
55,692 KB
testcase_19 AC 147 ms
55,920 KB
testcase_20 AC 141 ms
55,668 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 140 ms
56,208 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