結果
問題 | No.607 開通777年記念 |
ユーザー | sggkshio |
提出日時 | 2019-12-09 01:04:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 888 bytes |
コンパイル時間 | 769 ms |
コンパイル使用メモリ | 88,380 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-06-10 23:16:50 |
合計ジャッジ時間 | 2,307 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 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 | WA | - |
testcase_06 | AC | 2 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 | 3 ms
5,376 KB |
testcase_11 | AC | 206 ms
7,424 KB |
testcase_12 | AC | 195 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]; if (ans==777) { cout << "YES" << endl; return 0; } while (ans > 777) { ans -= p[i][y]; y++; } } } cout << "NO" << endl; return 0; }