結果

問題 No.607 開通777年記念
ユーザー TotoriTotori
提出日時 2017-12-07 11:08:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 508 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 69,824 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-05-06 19:15:01
合計ジャッジ時間 5,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1,634 ms
5,504 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 17 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 TLE -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string.h>
using namespace std;
int a[1001][1001];
int main() {
	int n,m;
	int c[1001];
	cin>>n>>m;
	for(int i=1; i<=m; i++){
		memset(c,0,sizeof(int)*1001);
		for(int j=1;j<=n;j++){
			cin>>c[j];
		}
		for(int k=1;k<=n;k++){
			for(int l=k;l<=n;l++){
				for(int x=k;x<=l;x++) {
					a[k][l]+=c[x];
				}
			}
		}
		for(int k=1;k<=n;k++) {
			for (int l=1;l<=n;l++) {
				if(a[k][l]==777){
					cout<<"YES"<<endl;
					return 0;
				}
			}
		}
	}
	cout<<"NO"<<endl;
	return 0;
}
0