結果

問題 No.475 最終日 - Writerの怠慢
ユーザー 37zigen37zigen
提出日時 2016-12-28 05:03:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,137 bytes
コンパイル時間 3,931 ms
コンパイル使用メモリ 77,420 KB
実行使用メモリ 48,992 KB
最終ジャッジ日時 2024-05-08 23:19:13
合計ジャッジ時間 12,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 145 ms
41,640 KB
testcase_02 AC 195 ms
42,608 KB
testcase_03 AC 280 ms
46,108 KB
testcase_04 AC 707 ms
48,992 KB
testcase_05 WA -
testcase_06 AC 662 ms
48,836 KB
testcase_07 AC 695 ms
48,888 KB
testcase_08 AC 648 ms
48,788 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 692 ms
48,684 KB
testcase_12 AC 542 ms
48,416 KB
testcase_13 AC 602 ms
48,528 KB
testcase_14 AC 138 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q475 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long S = sc.nextLong();
		int writerId = sc.nextInt();
		long[] a = new long[N];
		for (int i = 0; i < N; ++i) {
			a[i] = sc.nextLong();
		}
		long writerPoint = a[writerId] + 100 * S;

		long[] p = new long[N + 1];
		for (int i = 1; i < N; ++i) {
			p[i] = (long) (50 * S + 50 * S / (0.8 + 0.2 * i));
		}

		int[] R = new int[N + 1];
		for (int i = 0; i < N; ++i) {
			if (i == writerId)
				continue;
			if (p[N] + a[i] > writerPoint) {
				System.out.println(0);
				return;
			}
			int l = 0;
			int r = N;
			while (r - l > 1) {
				int mid = (l + r) / 2;
				if (p[mid] + a[i] <= writerPoint) {
					r = mid;
				} else {
					l = mid;
				}
			}
			++R[r];
		}
		double pb = 1;
		double s = 0;
		int li = N - 1;
		for (int i = 1; i <= N - 1; ++i) {
			s += R[i];
			pb *= s;
			while (pb > 1) {
				pb /= li;
				--li;
			}
			--s;
		}
		System.out.println(pb);

	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0