結果

問題 No.536 人工知能
ユーザー tazakkytazakky
提出日時 2017-09-15 14:56:58
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 167 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 30,796 KB
実行使用メモリ 31,404 KB
最終ジャッジ日時 2024-11-07 22:50:55
合計ジャッジ時間 1,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,404 KB
testcase_01 AC 41 ms
31,204 KB
testcase_02 AC 41 ms
31,300 KB
testcase_03 AC 42 ms
31,296 KB
testcase_04 AC 41 ms
31,116 KB
testcase_05 AC 42 ms
31,344 KB
testcase_06 AC 41 ms
31,012 KB
testcase_07 AC 41 ms
31,096 KB
testcase_08 AC 41 ms
31,008 KB
testcase_09 AC 41 ms
31,012 KB
testcase_10 AC 44 ms
30,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $s = trim(fgets(STDIN));
    if(preg_match('/(ai$)/', $s)){
        echo substr_replace($s, "AI", -2, 2)."\n";
    }else{
        echo $s."-AI\n";
    }

?>
0