結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー tentententen
提出日時 2020-12-04 14:50:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 2,313 bytes
コンパイル時間 3,087 ms
コンパイル使用メモリ 79,984 KB
実行使用メモリ 48,188 KB
最終ジャッジ日時 2024-09-15 01:11:16
合計ジャッジ時間 10,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,152 KB
testcase_01 AC 132 ms
41,396 KB
testcase_02 AC 131 ms
41,332 KB
testcase_03 AC 213 ms
44,204 KB
testcase_04 AC 208 ms
44,184 KB
testcase_05 AC 247 ms
47,616 KB
testcase_06 AC 252 ms
47,568 KB
testcase_07 AC 230 ms
46,064 KB
testcase_08 AC 224 ms
45,352 KB
testcase_09 AC 253 ms
47,012 KB
testcase_10 AC 186 ms
42,668 KB
testcase_11 AC 216 ms
44,536 KB
testcase_12 AC 208 ms
43,848 KB
testcase_13 AC 249 ms
46,756 KB
testcase_14 AC 252 ms
46,852 KB
testcase_15 AC 218 ms
44,504 KB
testcase_16 AC 197 ms
43,016 KB
testcase_17 AC 215 ms
44,884 KB
testcase_18 AC 186 ms
42,468 KB
testcase_19 AC 265 ms
47,448 KB
testcase_20 AC 261 ms
47,288 KB
testcase_21 AC 210 ms
44,180 KB
testcase_22 AC 212 ms
44,428 KB
testcase_23 AC 228 ms
46,128 KB
testcase_24 AC 247 ms
46,932 KB
testcase_25 AC 260 ms
48,188 KB
testcase_26 AC 237 ms
46,400 KB
testcase_27 AC 237 ms
46,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        Person.size = n;
        int[] diffs = new int[n];
        for (int i = 0; i < n; i++) {
            diffs[i] = sc.nextInt();
        }
        int[] counts = new int[n];
        HashMap<String, Person> results = new HashMap<>();
        int t = sc.nextInt();
        for (int i = 0; i < t; i++) {
            String name = sc.next();
            int idx = sc.next().charAt(0) - 'A';
            if (!results.containsKey(name)) {
                results.put(name, new Person(name));
            }
            counts[idx]++;
            results.get(name).add(i, idx, (int)(50 * diffs[idx] + 50 * diffs[idx] / (0.8 + 0.2 * counts[idx])));
        }
        Person[] persons = new Person[results.size()];
        int idx = 0;
        for (Person p : results.values()) {
            persons[idx] = p;
            idx++;
        }
        Arrays.sort(persons);
        StringBuilder sb = new StringBuilder();
        int order = 1;
        for (Person p : persons) {
            sb.append(order).append(" ").append(p).append("\n");
            order++;
        }
        System.out.print(sb);
    }
    
    
    static class Person implements Comparable<Person> {
        static int size;
        String name;
        int[] scores;
        int sum;
        int last;
        
        public Person(String name) {
            this.name = name;
            scores = new int[size];
            sum = 0;
            last = 0;
        }
        
        public void add(int times, int idx, int value) {
            sum += value;
            last = times;
            scores[idx] = value;
        }
        
        public int compareTo(Person another) {
            if (sum == another.sum) {
                return last - another.last;
            } else {
                return another.sum - sum;
            }
        }
        
        public String toString() {
            StringBuilder sb = new StringBuilder();
            sb.append(name);
            for (int i = 0; i < size; i++) {
                sb.append(" ").append(scores[i]);
            }
            sb.append(" ").append(sum);
            return sb.toString();
        }
    }
    
}
0