結果

問題 No.536 人工知能
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-04-13 20:48:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 230 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 55,424 KB
最終ジャッジ日時 2024-10-03 00:21:24
合計ジャッジ時間 1,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,656 KB
testcase_01 AC 42 ms
55,424 KB
testcase_02 AC 44 ms
55,296 KB
testcase_03 AC 42 ms
54,784 KB
testcase_04 AC 43 ms
54,784 KB
testcase_05 AC 41 ms
55,296 KB
testcase_06 AC 43 ms
55,296 KB
testcase_07 AC 41 ms
55,120 KB
testcase_08 AC 41 ms
55,424 KB
testcase_09 AC 41 ms
55,296 KB
testcase_10 AC 40 ms
55,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

S = input()[:-1]
N = len(S)
if S[-2:]=='ai':
    print(S[:-2]+'AI')
else:
    print(S+'-AI')
0