結果
| 問題 |
No.536 人工知能
|
| コンテスト | |
| ユーザー |
mas9612
|
| 提出日時 | 2019-08-15 19:27:12 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 244 bytes |
| コンパイル時間 | 453 ms |
| コンパイル使用メモリ | 55,000 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-19 15:29:33 |
| 合計ジャッジ時間 | 938 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
cin >> s;
if (s.substr(s.length() - 2, 2) == "ai")
cout << s.substr(0, s.length() - 2) << "AI\n";
else
cout << s << "-AI\n";
}
mas9612