結果
問題 | No.9006 マルチバイト文字テスト(テスト用) |
ユーザー | okkuukenken |
提出日時 | 2022-07-23 13:36:23 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 712 bytes |
コンパイル時間 | 1,655 ms |
コンパイル使用メモリ | 136,460 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-05 01:31:36 |
合計ジャッジ時間 | 2,121 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include<iostream> #include<vector> #include<algorithm> #include<cmath> #include<string> #include<iomanip> #include<numeric> #include<queue> #include<deque> #include<stack> #include<set> #include<map> #include<random> using namespace std; typedef long long ll; const int mod=998244353; int main(){ string s; cin>>s; vector<string>vec; for(int i=0;i<s.size();i++){ if(s[i]>=128){ vec.push_back(s.substr(i,3)); i+=2; }else vec.push_back(s.substr(i,1)); } reverse(vec.begin(),vec.end()); for(auto x:vec) cout<<x; cout<<endl; /*int ans=0,cnt=0; for(auto x:vec){ cout<<x<<endl; if(x=="…") cnt++; else cnt=0; ans=max(ans,cnt); } cout<<ans<<endl;*/ }