結果

問題 No.709 優勝可能性
ユーザー htensaihtensai
提出日時 2020-01-08 08:25:38
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,244 bytes
コンパイル時間 2,499 ms
コンパイル使用メモリ 78,864 KB
実行使用メモリ 88,624 KB
最終ジャッジ日時 2024-11-23 02:12:41
合計ジャッジ時間 33,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
42,156 KB
testcase_01 AC 53 ms
87,432 KB
testcase_02 AC 53 ms
42,452 KB
testcase_03 AC 55 ms
57,560 KB
testcase_04 AC 52 ms
42,324 KB
testcase_05 AC 54 ms
57,472 KB
testcase_06 AC 52 ms
42,448 KB
testcase_07 AC 50 ms
57,256 KB
testcase_08 AC 52 ms
42,136 KB
testcase_09 AC 54 ms
36,988 KB
testcase_10 TLE -
testcase_11 AC 1,620 ms
49,068 KB
testcase_12 TLE -
testcase_13 AC 693 ms
51,400 KB
testcase_14 AC 1,024 ms
53,260 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 60 ms
37,076 KB
testcase_19 AC 58 ms
37,048 KB
testcase_20 AC 720 ms
47,996 KB
testcase_21 AC 731 ms
49,000 KB
testcase_22 AC 51 ms
36,680 KB
testcase_23 AC 53 ms
88,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        HashSet<Integer>[] maxIdxes = new HashSet[m];
        for (int i = 0; i < m; i++) {
            maxIdxes[i] = new HashSet<Integer>();
        }
        int[] maxValues = new int[m];
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            String[] line = br.readLine().split(" ", m);
            HashSet<Integer> count = new HashSet<>();
            for (int j = 0; j < m; j++) {
                int x = Integer.parseInt(line[j]);
                if (maxValues[j] < x) {
                    maxValues[j] = x;
                    maxIdxes[j].clear();
                    maxIdxes[j].add(i);
                } else if (maxValues[j] == x) {
                    maxIdxes[j].add(i);
                }
                count.addAll(maxIdxes[j]);
            }
            sb.append(count.size()).append("\n");
        }
        System.out.print(sb);
    }
}
0