結果
| 問題 |
No.993 青色
|
| コンテスト | |
| ユーザー |
tokutaro
|
| 提出日時 | 2020-03-06 06:53:23 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 247 bytes |
| コンパイル時間 | 4,749 ms |
| コンパイル使用メモリ | 214,760 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-14 02:37:00 |
| 合計ジャッジ時間 | 5,239 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 |
ソースコード
#include <iostream>
#include <string>
#include <regex>
using namespace std;
int main() {
char tmp[100];
string str;
scanf("%s", tmp);
str = tmp;
regex re("ao");
cout << regex_replace(str, re, "ki") << "\n";
return 0;
}
tokutaro