結果

問題 No.709 優勝可能性
ユーザー ei1333333ei1333333
提出日時 2018-03-30 01:35:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,520 ms / 3,500 ms
コード長 892 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 77,148 KB
実行使用メモリ 104,624 KB
最終ジャッジ日時 2024-06-26 00:18:58
合計ジャッジ時間 26,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,076 KB
testcase_01 AC 141 ms
53,600 KB
testcase_02 AC 144 ms
53,860 KB
testcase_03 AC 143 ms
53,768 KB
testcase_04 AC 137 ms
54,032 KB
testcase_05 AC 137 ms
53,872 KB
testcase_06 AC 141 ms
54,056 KB
testcase_07 AC 135 ms
53,560 KB
testcase_08 AC 139 ms
53,848 KB
testcase_09 AC 144 ms
53,992 KB
testcase_10 AC 1,567 ms
74,324 KB
testcase_11 AC 1,164 ms
71,328 KB
testcase_12 AC 2,115 ms
76,648 KB
testcase_13 AC 2,148 ms
86,816 KB
testcase_14 AC 2,520 ms
104,624 KB
testcase_15 AC 2,232 ms
88,888 KB
testcase_16 AC 2,186 ms
87,848 KB
testcase_17 AC 2,132 ms
81,392 KB
testcase_18 AC 132 ms
53,636 KB
testcase_19 AC 143 ms
54,052 KB
testcase_20 AC 2,299 ms
80,708 KB
testcase_21 AC 2,212 ms
80,616 KB
testcase_22 AC 135 ms
54,108 KB
testcase_23 AC 136 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main
{
		public static void main(String arg[])
		{
				Scanner cin = new Scanner(System.in);
				int N = cin.nextInt();
				int M = cin.nextInt();
				int[][] R = new int[N][M];
				int[] last = new int[M];
				int[] deg = new int[N];
				int ans = 0;
			  
				for(int i = 0; i < N; i++) {
						for(int j = 0; j < M; j++) {
								R[i][j] = cin.nextInt();
								if(R[i][j] > R[last[j]][j]) {
										for(int k = last[j]; k < i; k++) {
												if(R[last[j]][j] == R[k][j]) {
														
														deg[k]--;
														if(deg[k] == 0) {
																ans--;
														}
												}
										}
										last[j] = i;
										deg[i]++;
										if(deg[i] == 1) ans++;
								} else if(R[i][j] == R[last[j]][j]) {
										deg[i]++;
										if(deg[i] == 1) ans++;
								}		
						}
						System.out.println(ans);
				}
		}
}
0