結果

問題 No.210 探し物はどこですか?
ユーザー htensaihtensai
提出日時 2020-01-15 12:33:07
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,314 bytes
コンパイル時間 2,882 ms
コンパイル使用メモリ 78,324 KB
実行使用メモリ 58,484 KB
最終ジャッジ日時 2024-12-31 22:13:01
合計ジャッジ時間 14,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
54,396 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 200 ms
54,316 KB
testcase_04 AC 187 ms
54,280 KB
testcase_05 AC 189 ms
54,228 KB
testcase_06 AC 203 ms
54,256 KB
testcase_07 AC 184 ms
54,284 KB
testcase_08 AC 170 ms
54,276 KB
testcase_09 AC 173 ms
54,400 KB
testcase_10 AC 179 ms
54,176 KB
testcase_11 AC 178 ms
54,252 KB
testcase_12 AC 176 ms
54,232 KB
testcase_13 AC 181 ms
54,508 KB
testcase_14 AC 185 ms
54,008 KB
testcase_15 AC 192 ms
54,428 KB
testcase_16 AC 184 ms
54,236 KB
testcase_17 AC 181 ms
54,376 KB
testcase_18 AC 185 ms
54,344 KB
testcase_19 AC 182 ms
54,372 KB
testcase_20 AC 189 ms
54,208 KB
testcase_21 AC 188 ms
53,984 KB
testcase_22 AC 184 ms
54,340 KB
testcase_23 AC 248 ms
54,928 KB
testcase_24 AC 251 ms
54,632 KB
testcase_25 AC 255 ms
54,912 KB
testcase_26 AC 245 ms
54,992 KB
testcase_27 AC 234 ms
55,284 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 292 ms
57,060 KB
testcase_34 AC 294 ms
58,056 KB
testcase_35 AC 293 ms
58,296 KB
testcase_36 AC 259 ms
57,152 KB
testcase_37 AC 288 ms
58,056 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 136 ms
53,264 KB
testcase_44 AC 142 ms
53,380 KB
testcase_45 AC 192 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