結果
問題 | No.709 優勝可能性 |
ユーザー | htensai |
提出日時 | 2020-01-08 08:19:19 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,020 bytes |
コンパイル時間 | 3,360 ms |
コンパイル使用メモリ | 79,716 KB |
実行使用メモリ | 65,320 KB |
最終ジャッジ日時 | 2024-05-02 12:27:11 |
合計ジャッジ時間 | 11,201 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
46,760 KB |
testcase_01 | AC | 139 ms
41,544 KB |
testcase_02 | AC | 140 ms
41,348 KB |
testcase_03 | AC | 144 ms
41,496 KB |
testcase_04 | AC | 133 ms
40,996 KB |
testcase_05 | AC | 137 ms
41,196 KB |
testcase_06 | AC | 142 ms
41,200 KB |
testcase_07 | AC | 137 ms
41,324 KB |
testcase_08 | AC | 135 ms
41,224 KB |
testcase_09 | AC | 144 ms
41,060 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.*; 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); } }