結果

問題 No.3005 天使のハッシュ関数
ユーザー catuppercatupper
提出日時 2014-12-25 23:31:03
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 76 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 6,732 KB
実行使用メモリ 8,272 KB
最終ジャッジ日時 2023-09-03 18:05:10
合計ジャッジ時間 1,665 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
8,152 KB
testcase_01 AC 11 ms
8,184 KB
testcase_02 AC 12 ms
8,148 KB
testcase_03 AC 10 ms
8,272 KB
testcase_04 AC 11 ms
8,020 KB
testcase_05 AC 12 ms
7,956 KB
testcase_06 AC 12 ms
7,952 KB
testcase_07 AC 12 ms
8,152 KB
testcase_08 AC 12 ms
8,108 KB
testcase_09 AC 12 ms
7,956 KB
testcase_10 AC 11 ms
7,952 KB
testcase_11 AC 10 ms
8,092 KB
testcase_12 AC 11 ms
8,156 KB
testcase_13 AC 12 ms
8,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import md5
def m(x):
	return md5.new(x).hexdigest()

print m(m(raw_input()))
0