結果

問題 No.607 開通777年記念
ユーザー NacoNaco
提出日時 2019-07-14 01:00:18
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 55,000 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-05-02 22:16:42
合計ジャッジ時間 1,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 40 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 229 ms
7,296 KB
testcase_12 AC 213 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

int main(){
    int N,M;
    cin >> N >> M;
    int a[M][N];
    for(int i=0;i<M;i++){
        for(int j=0;j<N;j++){
            cin >> a[i][j];
            if(i>=1){
                a[i][j]+=a[i-1][j];
            }
        }
    }

    for(int i=0;i<M;i++){
        int left=0;
        int right=0;
        int sum=0;
        for(int left=0;left<N;left++){
            while(true){
                if(sum==777){
                    cout << "YES" << endl;
                    return 0;
                }
                if(sum>777) break;
                sum+=a[i][right++];
            }
            sum-=a[i][left];
        }
    }
    cout << "NO" << endl;
}
0