結果
問題 | No.536 人工知能 |
ユーザー | d_sei |
提出日時 | 2019-08-20 21:51:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 489 bytes |
コンパイル時間 | 730 ms |
コンパイル使用メモリ | 74,412 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-06 16:09:51 |
合計ジャッジ時間 | 2,974 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
#include<iostream> #include<algorithm> #include <vector> #include<cmath> using namespace std; typedef long long int lont; int main() { string S; int Z = S.size(); vector<char>vec(Z); for (int ia = 0; ia < Z; ia++) { cin >> vec.at(ia); } if (vec.at(Z - 3) == 'a' && vec.at(Z - 2) == 'i') { for (int ib = 0; ib < Z - 2; ib++) { cout << vec.at(ib); } cout << "AI" << endl; } else { for (int ic = 0; ic < Z; ic++) { cout << vec.at(ic); } cout << "-AI" << endl; } }