結果
問題 | No.536 人工知能 |
ユーザー | tazakky |
提出日時 | 2017-09-15 14:55:27 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 172 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 30,700 KB |
実行使用メモリ | 31,380 KB |
最終ジャッジ日時 | 2024-11-07 22:50:54 |
合計ジャッジ時間 | 1,206 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
31,380 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 41 ms
31,156 KB |
testcase_04 | AC | 41 ms
31,052 KB |
testcase_05 | WA | - |
testcase_06 | AC | 42 ms
30,904 KB |
testcase_07 | WA | - |
testcase_08 | AC | 41 ms
31,124 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $s = trim(fgets(STDIN)); if(preg_match('/(ai$)/', $s)){ echo substr_replace($s, "AI", -2, 2)."\n"; }else{ echo $s."–AI"."\n"; } ?>