結果
問題 | No.607 開通777年記念 |
ユーザー | newlife171128 |
提出日時 | 2017-12-20 00:25:49 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,354 bytes |
コンパイル時間 | 752 ms |
コンパイル使用メモリ | 66,716 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-12-16 02:37:18 |
合計ジャッジ時間 | 10,681 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
8,448 KB |
testcase_02 | AC | 1 ms
10,624 KB |
testcase_03 | AC | 2 ms
8,448 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | TLE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 45 ms
5,248 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
ソースコード
#include <iostream>#include <vector>#include <algorithm>#include <string>#include <sstream>using namespace std;int main() {int n = 0;int m = 0;cin >> n >> m;int car[n] = {};int car_t[n + 1] = {};int tmp = 0;bool judge = false;for (int i = 0; i < m; i++) {for (int i = 0; i < n; i++) {cin >> tmp;car[i] += tmp;}for (int i = 0; i < n; i++) {car_t[i + 1] = car_t[i] + car[i];/* cout<<car_t[i+1]<<endl;*/}stringstream ss;string fever;for (int t = 1; t <= n; t++) {int ans = car_t[t] - car_t[0];ss << ans;fever = ss.str();for (int i = 1; i < fever.length(); i++) {if (fever[0] != fever[i]) {break;}if (i == fever.length()-1) {judge = true;}}ss.str("");ss.clear(stringstream::goodbit);/* cout<<"t:"<<t<<" "<<ans<<endl;*/int tmp = 0;for (int k = 0; k < n - t; k++) {tmp = car_t[k + 1 + t] - car_t[k + 1];ss << tmp;fever = ss.str();for (int i = 1; i < fever.length(); i++) {if (fever[0] != fever[i]) {break;}if (i == fever.length()-1) {judge = true;}}ss.str("");ss.clear(stringstream::goodbit);/* cout<<"t:"<<t<<" "<<tmp<<endl;*/}}}if (judge) {cout << "YES" << endl;} else {cout << "NO" << endl;}return 0;}