結果

問題 No.536 人工知能
ユーザー seaside0002seaside0002
提出日時 2020-01-05 16:00:10
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 136 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 30,872 KB
実行使用メモリ 31,144 KB
最終ジャッジ日時 2024-05-02 09:10:49
合計ジャッジ時間 1,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,996 KB
testcase_01 AC 41 ms
31,100 KB
testcase_02 AC 40 ms
31,012 KB
testcase_03 AC 41 ms
30,988 KB
testcase_04 AC 40 ms
30,948 KB
testcase_05 AC 40 ms
30,836 KB
testcase_06 AC 43 ms
30,880 KB
testcase_07 AC 40 ms
30,788 KB
testcase_08 AC 41 ms
31,000 KB
testcase_09 AC 40 ms
31,144 KB
testcase_10 AC 41 ms
30,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$ID = trim(fgets(STDIN));

if(substr($ID, -2) == 'ai'){
			echo substr_replace($ID, 'AI', -2, 2);
		}else{
			echo $ID.'-AI';
		}
0