結果

問題 No.3005 天使のハッシュ関数
ユーザー yuustiyuusti
提出日時 2014-12-25 23:28:26
言語 PHP
(8.3.4)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 75 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 31,432 KB
最終ジャッジ日時 2024-06-12 23:28:52
合計ジャッジ時間 1,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
31,264 KB
testcase_01 AC 38 ms
31,076 KB
testcase_02 AC 39 ms
31,396 KB
testcase_03 AC 38 ms
31,152 KB
testcase_04 AC 38 ms
31,432 KB
testcase_05 AC 40 ms
30,900 KB
testcase_06 AC 38 ms
30,860 KB
testcase_07 AC 38 ms
31,032 KB
testcase_08 AC 39 ms
31,120 KB
testcase_09 AC 39 ms
31,028 KB
testcase_10 AC 40 ms
31,348 KB
testcase_11 AC 39 ms
30,912 KB
testcase_12 AC 39 ms
31,296 KB
testcase_13 AC 40 ms
31,116 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$str = trim(fgets(STDIN));
echo hash("md5", hash("md5", $str))."\n";
0