結果
問題 | No.301 サイコロで確率問題 (1) |
ユーザー | Grenache |
提出日時 | 2015-11-14 00:42:34 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,503 bytes |
コンパイル時間 | 3,686 ms |
コンパイル使用メモリ | 78,516 KB |
実行使用メモリ | 61,868 KB |
最終ジャッジ日時 | 2024-09-13 16:32:39 |
合計ジャッジ時間 | 5,825 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 508 ms
59,208 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.Iterator; public class Main_yukicoder301 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); // final double EPS = 1.e-13; int t = sc.nextInt(); for (int i = 0; i < t; i++) { long n = sc.nextLong(); // if (n < 10000000) { double[] a = new double[6 + 1]; double[] b = new double[6 + 1]; long j; for (j = n - 1; j >= 0 && n - j < 130; j--) { b[(int)(j % 7)] = 1; a[(int)(j % 7)] = 0; for (int k = 1; k <= 6; k++) { if (j + k > n) { a[(int)(j % 7)] += (double)1 / 6; } else { a[(int)(j % 7)] += a[(int)((j + k) % 7)] / 6; b[(int)(j % 7)] += b[(int)((j + k) % 7)] / 6; } } } if (j > 0) { b[(int)((j + 1) % 7)] += (1 - a[(int)((j + 1) % 7)]) * (j + 1); } pr.printf("%.13f\n", b[(int)((j + 1) % 7)] / (1 - a[(int)((j + 1) % 7)])); // } else { // } } pr.close(); sc.close(); } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator<String> it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }