結果
問題 | No.342 一番ワロタww |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-14 22:50:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 823 bytes |
コンパイル時間 | 2,068 ms |
コンパイル使用メモリ | 207,528 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 14:36:18 |
合計ジャッジ時間 | 2,524 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { string s; cin>>s; if (s=="0w") { cout<<0<<endl; return 0; } int n=s.size(); vector<string> ss; vector<int> w; int i=0; while (s.substr(i,3)=="w") i+=3; while (i<n) { string t; while (i<n&&s.substr(i,3)!="w") { t+=s.substr(i,3); i+=3; } ss.push_back(t); int cnt=0; while (i<n&&s.substr(i,3)=="w") { cnt++; i+=3; } w.push_back(cnt); } int mx=0; for (int x:w) mx=max(mx,x); if (mx==0) { cout<<endl; return 0; } for (int i=0;i<w.size();i++) { if (w[i]==mx) { cout<<ss[i]<<endl; } } return 0; }