結果

問題 No.536 人工知能
ユーザー Ichimiya
提出日時 2020-05-02 23:32:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 248 bytes
コンパイル時間 1,290 ms
コンパイル使用メモリ 162,872 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-02 00:45:02
合計ジャッジ時間 2,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	string s;
	cin >> s;

	int sl = s.size();
	string x = s.substr(sl - 2, 2);
	if (x == "ai") {
		s.at(sl - 2) = 'A';
		s.at(sl - 1) = 'I';
	}
	else {
		s += "-AI";
	}

	cout << s << endl;
}
0