結果
| 問題 |
No.9006 マルチバイト文字テスト(テスト用)
|
| ユーザー |
|
| 提出日時 | 2015-06-04 17:25:53 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 1,190 bytes |
| コンパイル時間 | 1,487 ms |
| コンパイル使用メモリ | 165,292 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-06 14:07:20 |
| 合計ジャッジ時間 | 1,919 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
ソースコード
#include <bits/stdc++.h>
inline long nextInt(void) {
long temp;
std::cin >> temp;
return temp;
}
int main() {
std::string str;
std::vector< std::string > ans;
std::vector< char > temp;
std::cin >> str;
for(int i = 0; i < str.size(); ++i) {
temp.clear();
if( (str[i] & 0x80) == 0x00 ) {
temp.push_back(str[i]);
}
else if( (str[i] & 0xe0) == 0xc0 ) {
temp.push_back(str[i]);
++i; temp.push_back(str[i]);
}
else if( (str[i] & 0xf0) == 0xe0 ) {
temp.push_back(str[i]);
++i; temp.push_back(str[i]);
++i; temp.push_back(str[i]);
}
else if( (str[i] & 0xf8) == 0xf0 ) {
temp.push_back(str[i]);
++i; temp.push_back(str[i]);
++i; temp.push_back(str[i]);
++i; temp.push_back(str[i]);
}
else if( (str[i] & 0xfc) == 0xf8 ) {
temp.push_back(str[i]);
++i; temp.push_back(str[i]);
++i; temp.push_back(str[i]);
++i; temp.push_back(str[i]);
++i; temp.push_back(str[i]);
}
temp.push_back('\0');
ans.push_back( &temp[0] );
}
for(int i = ans.size()-1; i >= 0; --i) {
std::cout << ans[i];
}
std::cout << std::endl;
return 0;
}