結果

問題 No.423 ハムスター語初級(数詞)
ユーザー leos_caraxleos_carax
提出日時 2016-10-23 14:40:54
言語 PHP
(843.2)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 5,008 ms
コンパイル使用メモリ 31,960 KB
実行使用メモリ 31,472 KB
最終ジャッジ日時 2024-11-24 01:55:05
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
30,888 KB
testcase_01 AC 38 ms
31,472 KB
testcase_02 AC 38 ms
30,884 KB
testcase_03 AC 41 ms
31,172 KB
testcase_04 AC 39 ms
31,100 KB
testcase_05 AC 38 ms
30,916 KB
testcase_06 AC 39 ms
30,904 KB
testcase_07 AC 39 ms
31,240 KB
testcase_08 AC 38 ms
31,168 KB
testcase_09 AC 38 ms
30,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// Here your code !
$hum = trim(fgets(STDIN));
$hum = str_replace("hamu","1",$hum);
$hum = str_replace("ham","0",$hum);
$num = bindec($hum) * 2;
$ans = decbin($num);
$ans = str_replace("1","hamu",$ans);
$ans = str_replace("0","ham",$ans);
echo $ans."\n";
?>
0