結果

問題 No.3005 天使のハッシュ関数
ユーザー tkzw_21tkzw_21
提出日時 2014-12-27 23:43:10
言語 Ruby
(3.3.0)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 105 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 11,248 KB
実行使用メモリ 15,500 KB
最終ジャッジ日時 2023-09-03 18:41:34
合計ジャッジ時間 2,146 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
15,352 KB
testcase_01 AC 75 ms
15,416 KB
testcase_02 AC 78 ms
15,420 KB
testcase_03 AC 75 ms
15,368 KB
testcase_04 AC 74 ms
15,344 KB
testcase_05 AC 71 ms
15,464 KB
testcase_06 AC 72 ms
15,208 KB
testcase_07 AC 71 ms
15,500 KB
testcase_08 AC 72 ms
15,212 KB
testcase_09 AC 72 ms
15,244 KB
testcase_10 AC 73 ms
15,264 KB
testcase_11 AC 74 ms
15,324 KB
testcase_12 AC 73 ms
15,208 KB
testcase_13 AC 74 ms
15,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'digest/md5'
str = gets
str.chomp!
puts Digest::MD5.new.update(Digest::MD5.new.update(str).to_s)
0