結果
問題 | No.536 人工知能 |
ユーザー |
![]() |
提出日時 | 2017-06-30 22:21:37 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 509 bytes |
コンパイル時間 | 1,430 ms |
コンパイル使用メモリ | 166,644 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 19:00:47 |
合計ジャッジ時間 | 1,954 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define FOR(i,l,r) for(int i = (int) (l);i < (int) (r);i++)template<typename T> bool chmax(T& a,const T& b){ return a < b ? (a = b,true) : false; }template<typename T> bool chmin(T& a,const T& b){ return b < a ? (a = b,true) : false; }typedef long long ll;int N;string S;int main(){cin >> S;N = S.size();if(S [N - 2] == 'a' && S [N - 1] == 'i'){S [N - 2] = 'A';S [N - 1] = 'I';}else{S += "-AI";}cout << S << endl;return 0;}