結果

問題 No.607 開通777年記念
ユーザー YamaKasaYamaKasa
提出日時 2018-09-27 17:55:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,813 ms / 2,000 ms
コード長 1,190 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 76,652 KB
実行使用メモリ 68,928 KB
最終ジャッジ日時 2024-10-12 04:31:14
合計ジャッジ時間 9,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,592 KB
testcase_01 AC 125 ms
41,160 KB
testcase_02 AC 137 ms
41,336 KB
testcase_03 AC 132 ms
41,308 KB
testcase_04 AC 125 ms
41,072 KB
testcase_05 AC 135 ms
41,712 KB
testcase_06 AC 134 ms
41,380 KB
testcase_07 AC 991 ms
59,264 KB
testcase_08 AC 131 ms
41,096 KB
testcase_09 AC 261 ms
46,332 KB
testcase_10 AC 262 ms
47,060 KB
testcase_11 AC 1,813 ms
68,928 KB
testcase_12 AC 1,776 ms
67,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		int[][]a = new int[M][N];
		for(int i = 0; i < M; i++) {
			for(int j = 0; j < N; j++) {
				a[i][j] = scan.nextInt();
			}
		}
		scan.close();
		int[][]b = new int[M + 1][N];

		for(int i = 1; i <= M; i++) {
			for(int j = 0; j < N; j++) {
				b[i][j] += b[i - 1][j] + a[i - 1][j];
			}
		}
		int[][]c = new int[M][N + 1];

		for(int i = 0; i < M; i++) {
			for(int j = 1; j <= N; j++) {
				c[i][j] += c[i][j - 1] + b[i + 1][j - 1];
			}
		}

//		for(int i = 0; i <= M; i++) {
//			for(int j = 0; j < N; j++) {
//				System.out.print(b[i][j] + " ");
//			}
//			System.out.println();
//		}
//
//		for(int i = 0; i < M; i++) {
//			for(int j = 0; j <= N; j++) {
//				System.out.print(c[i][j] + " ");
//			}
//			System.out.println();
//		}

		for(int i = 0; i < M; i++) {
			for(int j = 0; j <= N; j++) {
				for(int k = j + 1; k <= N; k++) {
					int t = c[i][k] - c[i][j];
					if(t == 777) {
						System.out.println("YES");
						System.exit(0);
					}
				}
			}
		}
		System.out.println("NO");
	}
}
0