結果

問題 No.607 開通777年記念
ユーザー tentententen
提出日時 2020-09-05 21:25:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 516 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 77,104 KB
実行使用メモリ 58,860 KB
最終ジャッジ日時 2024-05-06 20:11:07
合計ジャッジ時間 4,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,256 KB
testcase_01 AC 48 ms
50,028 KB
testcase_02 AC 47 ms
49,860 KB
testcase_03 AC 49 ms
50,340 KB
testcase_04 AC 49 ms
50,312 KB
testcase_05 AC 48 ms
50,432 KB
testcase_06 AC 48 ms
50,332 KB
testcase_07 AC 129 ms
54,784 KB
testcase_08 AC 48 ms
50,360 KB
testcase_09 AC 91 ms
52,060 KB
testcase_10 AC 50 ms
50,444 KB
testcase_11 AC 513 ms
58,860 KB
testcase_12 AC 516 ms
58,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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]);
    	int[] arr = new int[n + 1];
    	for (int i = 0; i < m; i++) {
    	    String[] line = br.readLine().split(" ", n);
    	    int[] sums = new int[n + 1];
    	    for (int j = 1; j <= n; j++) {
    	        arr[j] += Integer.parseInt(line[j - 1]);
    	        sums[j] = sums[j - 1] + arr[j];
    	    }
    	    int right = 0;
    	    for (int left = 0; left < n; left++) {
    	        while (right < n && sums[right] - sums[left] < 777) {
    	            right++;
    	        }
    	        if (sums[right] - sums[left] == 777) {
    	            System.out.println("YES");
    	            return;
    	        }
    	    }
    	}
    	System.out.println("NO");
	}
}
0