結果

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

テストケース

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

ソースコード

diff #

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