結果
問題 | No.607 開通777年記念 |
ユーザー | pekempey |
提出日時 | 2017-12-07 00:02:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 452 bytes |
コンパイル時間 | 707 ms |
コンパイル使用メモリ | 68,344 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-05-06 17:18:16 |
合計ジャッジ時間 | 2,183 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 15 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 208 ms
7,040 KB |
testcase_12 | AC | 216 ms
7,424 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> using namespace std; int a[1001][1000]; int main() { int n, m; cin >> n >> m; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cin >> a[i + 1][j]; a[i + 1][j] += a[i][j]; } for (int j = 0; j + 3 < m; j++) { if (a[i + 1][j] + a[i + 1][j + 1] + a[i + 1][j + 2] == 777) { puts("YES"); return 0; } } } puts("NO"); }