結果

問題 No.423 ハムスター語初級(数詞)
ユーザー PicklesSuperiorPicklesSuperior
提出日時 2018-10-21 09:10:13
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 30,932 KB
実行使用メモリ 31,180 KB
最終ジャッジ日時 2024-04-29 20:12:21
合計ジャッジ時間 1,181 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,716 KB
testcase_01 AC 42 ms
30,900 KB
testcase_02 AC 43 ms
31,004 KB
testcase_03 AC 42 ms
31,052 KB
testcase_04 AC 40 ms
30,836 KB
testcase_05 AC 40 ms
31,180 KB
testcase_06 AC 40 ms
31,008 KB
testcase_07 AC 41 ms
30,892 KB
testcase_08 AC 44 ms
30,780 KB
testcase_09 AC 41 ms
31,124 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?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");
?>
0