結果

問題 No.1807 UMA Gacha
ユーザー viral8viral8
提出日時 2022-10-01 08:22:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 2,615 ms
コンパイル使用メモリ 78,000 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-12-23 13:01:30
合計ジャッジ時間 6,723 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,248 KB
testcase_01 AC 146 ms
54,220 KB
testcase_02 AC 121 ms
54,156 KB
testcase_03 AC 116 ms
53,980 KB
testcase_04 AC 125 ms
54,224 KB
testcase_05 AC 121 ms
54,284 KB
testcase_06 AC 114 ms
53,192 KB
testcase_07 AC 139 ms
54,196 KB
testcase_08 AC 131 ms
53,700 KB
testcase_09 AC 143 ms
54,456 KB
testcase_10 AC 134 ms
54,244 KB
testcase_11 AC 141 ms
54,496 KB
testcase_12 AC 114 ms
53,880 KB
testcase_13 AC 107 ms
52,952 KB
testcase_14 AC 118 ms
53,892 KB
testcase_15 AC 129 ms
54,224 KB
testcase_16 AC 129 ms
54,116 KB
testcase_17 AC 127 ms
54,440 KB
testcase_18 AC 131 ms
54,264 KB
testcase_19 AC 136 ms
54,520 KB
testcase_20 AC 136 ms
54,360 KB
testcase_21 AC 114 ms
53,288 KB
testcase_22 AC 107 ms
52,948 KB
testcase_23 AC 117 ms
53,976 KB
testcase_24 AC 120 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        if(N>=200){
            System.out.println(1);
            return;
        }
        double P = sc.nextDouble();
        double ans = 1-P;
        while(--N>0){
            ans *= 1-P;
        }
        System.out.println(1-ans);
    }
}
0