結果

問題 No.3005 天使のハッシュ関数
ユーザー mbanmban
提出日時 2017-09-09 17:46:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 90 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-11-07 09:53:52
合計ジャッジ時間 3,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
86,016 KB
testcase_01 AC 131 ms
86,144 KB
testcase_02 AC 134 ms
86,144 KB
testcase_03 AC 132 ms
86,144 KB
testcase_04 AC 132 ms
86,016 KB
testcase_05 AC 133 ms
85,888 KB
testcase_06 AC 131 ms
86,144 KB
testcase_07 AC 137 ms
86,016 KB
testcase_08 AC 134 ms
85,888 KB
testcase_09 AC 133 ms
86,144 KB
testcase_10 AC 133 ms
86,016 KB
testcase_11 AC 132 ms
86,016 KB
testcase_12 AC 134 ms
86,144 KB
testcase_13 AC 132 ms
86,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import hashlib
def h(q):
 return hashlib.md5(q.encode()).hexdigest()
print(h(h(input())))
0