結果

問題 No.607 開通777年記念
ユーザー ohreitetsuohreitetsu
提出日時 2017-12-22 14:27:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 60,228 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-22 21:16:16
合計ジャッジ時間 2,115 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(int argc, char* argv[])
{
	int N,M;
	cin>>N>>M;
	int i,j,k;
	vector<int> A(N,0);
	for (i=0;i<M;i++){
		int b;
		for (j=0;j<N;j++){
			cin>>b;
			A[j]+=b;
			if (A[j]==777){
				cout<<"Yes"<<endl;
				return 0;
			}
		}
		int Sum=0;
		for (j=0;j<N-1;j++){
			Sum=0;
			for (k=j;k<N;k++){
				Sum+=A[k];
				if (Sum==777){
					cout<<"Yes"<<endl;
					return 0;
				}else if (Sum>777){
					break;
				}
			}
		}
	}
	cout<<"No"<<endl;
	return 0;
}
0