結果
問題 | No.709 優勝可能性 |
ユーザー | htensai |
提出日時 | 2020-01-08 08:19:19 |
言語 | Java (openjdk 23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,020 bytes |
コンパイル時間 | 4,941 ms |
コンパイル使用メモリ | 79,212 KB |
実行使用メモリ | 104,680 KB |
最終ジャッジ日時 | 2024-11-23 02:12:05 |
合計ジャッジ時間 | 42,222 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
46,516 KB |
testcase_01 | AC | 139 ms
101,356 KB |
testcase_02 | AC | 141 ms
46,636 KB |
testcase_03 | AC | 138 ms
100,532 KB |
testcase_04 | AC | 116 ms
46,888 KB |
testcase_05 | AC | 135 ms
103,508 KB |
testcase_06 | AC | 138 ms
46,868 KB |
testcase_07 | AC | 135 ms
103,996 KB |
testcase_08 | AC | 124 ms
46,788 KB |
testcase_09 | AC | 141 ms
41,244 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 2,588 ms
59,232 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 1,613 ms
59,488 KB |
testcase_14 | AC | 1,876 ms
59,216 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 121 ms
41,148 KB |
testcase_19 | AC | 136 ms
41,176 KB |
testcase_20 | AC | 1,792 ms
57,352 KB |
testcase_21 | AC | 1,777 ms
58,920 KB |
testcase_22 | AC | 128 ms
41,060 KB |
testcase_23 | AC | 129 ms
104,680 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); 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++) { HashSet<Integer> count = new HashSet<>(); for (int j = 0; j < m; j++) { int x = sc.nextInt(); 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); } }