結果

問題 No.536 人工知能
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-02 23:10:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 82 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 86,592 KB
実行使用メモリ 71,420 KB
最終ジャッジ日時 2023-09-27 23:38:23
合計ジャッジ時間 3,216 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,184 KB
testcase_01 AC 62 ms
70,980 KB
testcase_02 AC 64 ms
71,060 KB
testcase_03 AC 63 ms
71,180 KB
testcase_04 AC 61 ms
71,116 KB
testcase_05 AC 60 ms
71,188 KB
testcase_06 AC 63 ms
71,420 KB
testcase_07 AC 64 ms
71,184 KB
testcase_08 AC 63 ms
71,388 KB
testcase_09 AC 63 ms
71,064 KB
testcase_10 AC 63 ms
71,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
if S[-2:] == "ai":
    print(S[:-2] + "AI")
else:
    print(S + "-AI")
0