結果

問題 No.210 探し物はどこですか?
ユーザー ぴろずぴろず
提出日時 2015-05-18 11:09:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 1,875 ms
コンパイル使用メモリ 78,940 KB
実行使用メモリ 90,612 KB
最終ジャッジ日時 2024-07-06 05:23:40
合計ジャッジ時間 19,870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
48,564 KB
testcase_01 AC 381 ms
66,616 KB
testcase_02 AC 545 ms
89,884 KB
testcase_03 AC 114 ms
41,012 KB
testcase_04 AC 120 ms
41,624 KB
testcase_05 AC 109 ms
40,104 KB
testcase_06 AC 115 ms
40,536 KB
testcase_07 AC 110 ms
40,704 KB
testcase_08 AC 115 ms
41,280 KB
testcase_09 AC 118 ms
40,676 KB
testcase_10 AC 126 ms
41,932 KB
testcase_11 AC 112 ms
40,764 KB
testcase_12 AC 107 ms
40,304 KB
testcase_13 AC 271 ms
49,188 KB
testcase_14 AC 264 ms
48,720 KB
testcase_15 AC 269 ms
48,924 KB
testcase_16 AC 218 ms
48,540 KB
testcase_17 AC 219 ms
48,412 KB
testcase_18 AC 222 ms
48,428 KB
testcase_19 AC 217 ms
48,344 KB
testcase_20 AC 230 ms
48,664 KB
testcase_21 AC 232 ms
48,228 KB
testcase_22 AC 227 ms
47,640 KB
testcase_23 AC 500 ms
65,868 KB
testcase_24 AC 448 ms
61,744 KB
testcase_25 AC 527 ms
67,016 KB
testcase_26 AC 442 ms
61,764 KB
testcase_27 AC 492 ms
66,708 KB
testcase_28 AC 467 ms
65,820 KB
testcase_29 AC 460 ms
66,428 KB
testcase_30 AC 468 ms
66,856 KB
testcase_31 AC 457 ms
67,180 KB
testcase_32 AC 493 ms
65,440 KB
testcase_33 AC 685 ms
80,804 KB
testcase_34 AC 634 ms
80,600 KB
testcase_35 AC 657 ms
80,500 KB
testcase_36 AC 645 ms
80,712 KB
testcase_37 AC 703 ms
80,784 KB
testcase_38 AC 606 ms
90,380 KB
testcase_39 AC 603 ms
90,372 KB
testcase_40 AC 673 ms
90,284 KB
testcase_41 AC 623 ms
90,612 KB
testcase_42 AC 620 ms
89,280 KB
testcase_43 AC 110 ms
41,332 KB
testcase_44 AC 120 ms
41,836 KB
testcase_45 AC 112 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no210;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		double[] p = new double[n];
		double[] q = new double[n];
		for(int i=0;i<n;i++) {
			p[i] = sc.nextInt() / 1000D;
		}
		for(int i=0;i<n;i++) {
			q[i] = sc.nextInt() / 100D;
		}
		ArrayList<Double> al = new ArrayList<>();
		for(int i=0;i<n;i++) {
			for(int k=1;k<=1000;k++) {
				al.add(p[i] * Math.pow(1-q[i], k-1) * q[i]);
			}
		}
		Collections.sort(al,Collections.reverseOrder());
		double e = 0;
		for(int i=0;i<al.size();i++) {
			e += (i+1) * al.get(i);
		}
		System.out.println(e);
	}

}
0