結果

問題 No.210 探し物はどこですか?
ユーザー htensaihtensai
提出日時 2020-01-15 12:33:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,314 bytes
コンパイル時間 3,204 ms
コンパイル使用メモリ 78,244 KB
実行使用メモリ 58,484 KB
最終ジャッジ日時 2024-06-10 08:16:08
合計ジャッジ時間 15,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
54,072 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 213 ms
54,632 KB
testcase_04 AC 202 ms
54,036 KB
testcase_05 AC 182 ms
54,364 KB
testcase_06 AC 195 ms
54,176 KB
testcase_07 AC 198 ms
54,324 KB
testcase_08 AC 185 ms
54,412 KB
testcase_09 AC 180 ms
54,156 KB
testcase_10 AC 190 ms
54,428 KB
testcase_11 AC 189 ms
54,372 KB
testcase_12 AC 176 ms
54,236 KB
testcase_13 AC 190 ms
54,200 KB
testcase_14 AC 195 ms
54,216 KB
testcase_15 AC 194 ms
54,064 KB
testcase_16 AC 195 ms
54,424 KB
testcase_17 AC 190 ms
54,320 KB
testcase_18 AC 195 ms
54,488 KB
testcase_19 AC 195 ms
54,332 KB
testcase_20 AC 195 ms
54,012 KB
testcase_21 AC 194 ms
54,372 KB
testcase_22 AC 195 ms
54,276 KB
testcase_23 AC 260 ms
55,280 KB
testcase_24 AC 257 ms
55,008 KB
testcase_25 AC 283 ms
54,828 KB
testcase_26 AC 256 ms
55,124 KB
testcase_27 AC 266 ms
55,104 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 317 ms
58,228 KB
testcase_34 AC 317 ms
58,176 KB
testcase_35 AC 316 ms
58,056 KB
testcase_36 AC 303 ms
57,200 KB
testcase_37 AC 311 ms
56,672 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 150 ms
54,036 KB
testcase_44 AC 164 ms
54,292 KB
testcase_45 AC 212 ms
54,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        PriorityQueue<Room> queue = new PriorityQueue<>();
        for (int i = 0; i < n; i++) {
            queue.add(new Room(arr[i], sc.nextInt()));
        }
        double expect = 0;
        for (int i = 1; i < 100000; i++) {
            Room r = queue.poll();
            expect += r.allRate * i;
            r.next();
            queue.add(r);
        }
        System.out.println(expect);
    }
    
    static class Room implements Comparable<Room> {
        double rate;
        double allRate;
        
        public Room (int rate1, int rate2) {
            rate = rate2 / 100.0;
            allRate = rate1 / 1000.0 * rate;
            rate = 1 - rate;
        }
        
        public int compareTo(Room another) {
            if (allRate == another.allRate) {
                return 0;
            } else if (allRate > another.allRate) {
                return -1;
            } else {
                return 1;
            }
        }
        
        public void next() {
            allRate *= rate;
        }
    }
}
0