結果

問題 No.567 コンプリート
ユーザー takeya_okinotakeya_okino
提出日時 2017-09-20 17:55:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 73,932 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-05-08 12:08:58
合計ジャッジ時間 5,148 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,280 KB
testcase_01 AC 133 ms
41,812 KB
testcase_02 AC 131 ms
41,304 KB
testcase_03 AC 131 ms
41,776 KB
testcase_04 AC 132 ms
41,412 KB
testcase_05 AC 133 ms
41,556 KB
testcase_06 AC 132 ms
41,520 KB
testcase_07 AC 133 ms
41,400 KB
testcase_08 AC 134 ms
41,256 KB
testcase_09 AC 132 ms
41,088 KB
testcase_10 AC 133 ms
41,240 KB
testcase_11 AC 132 ms
41,668 KB
testcase_12 AC 133 ms
41,580 KB
testcase_13 AC 134 ms
41,616 KB
testcase_14 AC 133 ms
41,440 KB
testcase_15 AC 248 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    double p1 = 1;
    double p2 = 1;
    double p3 = 1;
    double p4 = 1;
    double p5 = 1;
    for(int i = 0; i < n; i++) {
      p1 = p1 * ((double)1 / (double)6);
      p2 = p2 * ((double)2 / (double)6);
      p3 = p3 * ((double)3 / (double)6);
      p4 = p4 * ((double)4 / (double)6);
      p5 = p5 * ((double)5 / (double)6);
    }
    double ans = 1 - p5 * (double)6 + p4 * (double)15 - p3 * (double)20 + p2 * (double)15 - p1 * (double)6;
    System.out.println(ans);
  }
}
0