結果
問題 | No.607 開通777年記念 |
ユーザー | bombrary_sk |
提出日時 | 2018-11-29 15:38:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 231 ms / 2,000 ms |
コード長 | 757 bytes |
コンパイル時間 | 964 ms |
コンパイル使用メモリ | 65,092 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-06-26 23:02:47 |
合計ジャッジ時間 | 1,793 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | 39 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 | 231 ms
7,296 KB |
testcase_12 | AC | 214 ms
7,296 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int N, M; cin >> N >> M; vector<vector<int>> a(M, vector<int>(N)); for (int i = 0; i < M; i++) { for (int j = 0; j < N; j++) { cin >> a[i][j]; } } vector<int> now(N); vector<int> s(N + 1); s[0] = 0; for (int i = 0; i < M; i++) { for (int j = 0; j < N; j++) { now[j] += a[i][j]; } for (int j = 0; j < N; j++) { s[j + 1] = s[j] + now[j]; } int l = 0, r = 1; while (l < N) { if (l == r) r++; while (r < N && s[r] - s[l] < 777) r++; if (s[r] - s[l] == 777) { cout << "YES" << endl; return 0; } l++; } } cout << "NO" << endl; return 0; }