結果
問題 | No.607 開通777年記念 |
ユーザー | sggkshio |
提出日時 | 2019-12-09 01:06:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 209 ms / 2,000 ms |
コード長 | 894 bytes |
コンパイル時間 | 831 ms |
コンパイル使用メモリ | 88,420 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-06-10 23:18:16 |
合計ジャッジ時間 | 1,804 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 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 | 35 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 209 ms
7,424 KB |
testcase_12 | AC | 191 ms
7,424 KB |
ソースコード
#define _USE_MATH_DEFINES #include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> #include <string> #include<math.h> #include<iomanip> #include<stdio.h> #include <stdlib.h> #include<stdio.h> #include <queue> #include<map> #include <sstream> #include<set> #include<stack> //#include<bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; vector<int>t(n); vector<vector<int>>p(m+1,vector<int>(n)); for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { int x; cin >> x; p[i][j] += x; p[i + 1][j] += p[i][j]; } } for (int i = 0; i < m; i++) { int y = 0; int ans = 0; for (int j = 0; j < n; j++) { ans += p[i][j]; while (ans > 777) { ans -= p[i][y]; y++; } if (ans == 777) { cout << "YES" << endl; return 0; } } } cout << "NO" << endl; return 0; }