結果

問題 No.1076 寿司打
ユーザー RISE70226821RISE70226821
提出日時 2020-08-06 17:06:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 41,892 KB
最終ジャッジ日時 2024-09-21 07:18:49
合計ジャッジ時間 4,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,444 KB
testcase_01 AC 125 ms
41,392 KB
testcase_02 AC 113 ms
40,664 KB
testcase_03 AC 126 ms
41,352 KB
testcase_04 AC 130 ms
41,492 KB
testcase_05 AC 139 ms
41,464 KB
testcase_06 AC 113 ms
40,696 KB
testcase_07 AC 129 ms
41,696 KB
testcase_08 AC 131 ms
41,892 KB
testcase_09 AC 133 ms
41,856 KB
testcase_10 AC 132 ms
41,404 KB
testcase_11 AC 131 ms
41,340 KB
testcase_12 AC 123 ms
40,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		double p = sc.nextDouble();
		
		// 期待値算出
		double exp = 0.0;
		for(int x = 1; x <= 1000; x++){
			exp += Math.pow(p,(double)x) * (1-p) * x;
		}
		
		// 出力
		System.out.println(exp);
	}
}
0