結果

問題 No.3005 天使のハッシュ関数
ユーザー なおなお
提出日時 2014-12-25 19:59:51
言語 Perl
(5.38.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 76 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 5,336 KB
実行使用メモリ 5,460 KB
最終ジャッジ日時 2023-09-03 17:27:51
合計ジャッジ時間 1,456 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,460 KB
testcase_01 AC 6 ms
5,332 KB
testcase_02 AC 6 ms
5,260 KB
testcase_03 AC 6 ms
5,460 KB
testcase_04 AC 6 ms
5,272 KB
testcase_05 AC 7 ms
5,188 KB
testcase_06 AC 6 ms
5,416 KB
testcase_07 AC 6 ms
5,352 KB
testcase_08 AC 7 ms
5,208 KB
testcase_09 AC 6 ms
5,188 KB
testcase_10 AC 6 ms
5,300 KB
testcase_11 AC 6 ms
5,348 KB
testcase_12 AC 6 ms
5,400 KB
testcase_13 AC 6 ms
5,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use Digest::MD5 qw/md5_hex/;
chomp($s=<>);
print md5_hex(md5_hex($s)),"\n";
0