結果

問題 No.607 開通777年記念
ユーザー sugarrrsugarrr
提出日時 2018-01-31 20:43:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 73,276 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-09 12:42:06
合計ジャッジ時間 1,659 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 33 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 199 ms
5,376 KB
testcase_12 AC 185 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<stack>
#include<queue>
#include<vector>
#include<algorithm>
#include<string>
#include<iostream>
#include<set>
#include<map>

using namespace std;
typedef long long ll;
#define i_7 1000000007
#define i_5 1000000005

ll mod(ll a){
    ll c=a%i_7;
    if(c>=0)return c;
    else return c+i_7;
}
typedef pair<int,int> i_i;
typedef pair<ll,ll> l_l;
typedef pair<double,double>d_d;
#define inf 100000000//10^8

/////////////////////////////////




int main(){
    int n,m;cin>>n>>m;
    int sum[n+1];for(int i=0;i<=n;i++)sum[i]=0;
    bool flag=false;
    while(m--){
        int su=0,p;
        for(int i=1;i<=n;i++){
            cin>>p;su+=p;
            sum[i]+=su;
        }
        int l=0,r=1;
        while(r<=n){
            if(l==r){r++;continue;}
            if(sum[r]-sum[l]==777){flag=true;break;}
            if(sum[r]-sum[l]>777)l++;
            else r++;
        }
        
    }
    if(flag)cout<<"YES"<<endl;
    else cout<<"NO"<<endl;
    return 0;
}
0