結果
問題 | No.709 優勝可能性 |
ユーザー | htensai |
提出日時 | 2020-01-08 08:25:38 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,244 bytes |
コンパイル時間 | 2,709 ms |
コンパイル使用メモリ | 78,192 KB |
実行使用メモリ | 37,144 KB |
最終ジャッジ日時 | 2024-05-02 12:27:22 |
合計ジャッジ時間 | 8,648 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
37,144 KB |
testcase_01 | AC | 47 ms
36,860 KB |
testcase_02 | AC | 47 ms
36,980 KB |
testcase_03 | AC | 46 ms
36,764 KB |
testcase_04 | AC | 47 ms
36,892 KB |
testcase_05 | AC | 47 ms
36,432 KB |
testcase_06 | AC | 46 ms
36,856 KB |
testcase_07 | AC | 46 ms
36,440 KB |
testcase_08 | AC | 46 ms
36,932 KB |
testcase_09 | AC | 46 ms
36,472 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
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); } }