結果
問題 | No.423 ハムスター語初級(数詞) |
ユーザー | PicklesSuperior |
提出日時 | 2018-10-21 09:10:13 |
言語 | PHP (8.3.4) |
結果 |
AC
|
実行時間 | 43 ms / 2,000 ms |
コード長 | 303 bytes |
コンパイル時間 | 2,862 ms |
コンパイル使用メモリ | 32,144 KB |
実行使用メモリ | 31,396 KB |
最終ジャッジ日時 | 2024-11-19 03:16:29 |
合計ジャッジ時間 | 1,148 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
30,804 KB |
testcase_01 | AC | 43 ms
30,740 KB |
testcase_02 | AC | 42 ms
30,948 KB |
testcase_03 | AC | 42 ms
30,700 KB |
testcase_04 | AC | 42 ms
30,820 KB |
testcase_05 | AC | 40 ms
31,396 KB |
testcase_06 | AC | 41 ms
30,956 KB |
testcase_07 | AC | 42 ms
30,828 KB |
testcase_08 | AC | 42 ms
31,096 KB |
testcase_09 | AC | 42 ms
30,900 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $input = trim(fgets(STDIN)); $length = strlen($input); #print($length . $input[0] . $input[1] . $input[2] . "\n"); if($length == 3 && $input[0] == "h" && $input[1] == "a" && $input[2] == "m"){ print("ham" . "\n"); return; } print($input . "ham" . "\n"); ?>