結果
問題 | No.342 一番ワロタww |
ユーザー | mamekin |
提出日時 | 2016-02-15 22:25:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,663 bytes |
コンパイル時間 | 998 ms |
コンパイル使用メモリ | 104,884 KB |
実行使用メモリ | 9,884 KB |
最終ジャッジ日時 | 2024-09-22 07:12:28 |
合計ジャッジ時間 | 13,403 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; int main() { const vector<unsigned char> tmp = {0xEF, 0xBD, 0x97}; vector<vector<unsigned char> > s; int len = 0; int maxLen = 0; for(;;){ vector<unsigned char> v(1); if(!(cin >> v[0])) break; int n = 1; while(v[0] & (1 << (7 - n))) ++ n; v.resize(n); for(int i=1; i<n; ++i) cin >> v[i]; s.push_back(v); if(v == tmp){ ++ len; maxLen = max(maxLen, len); } else{ len = 0; } } vector<vector<vector<unsigned char> > > ans; int i = s.size() - 1; while(i >= 0){ int j = i; while(j >= 0 && s[j] == tmp) -- j; int k = j; while(k >= 0 && s[k] != tmp) -- k; if(i - j == maxLen && j - k > 0){ vector<vector<unsigned char> > v(s.begin() + k + 1, s.begin() + j + 1); ans.push_back(v); } } for(unsigned i=0; i<ans.size(); ++i){ for(unsigned j=0; j<ans[i].size(); ++j){ for(unsigned k=0; k<ans[i][j].size(); ++k){ cout << ans[i][j][k]; } } cout << endl; } return 0; }