結果
| 問題 |
No.301 サイコロで確率問題 (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-11-14 00:31:15 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,503 bytes |
| コンパイル時間 | 3,695 ms |
| コンパイル使用メモリ | 79,440 KB |
| 実行使用メモリ | 62,428 KB |
| 最終ジャッジ日時 | 2024-09-13 16:31:44 |
| 合計ジャッジ時間 | 5,932 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 1 |
ソースコード
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 < 200; 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);
}
}
}