結果

問題 No.3005 天使のハッシュ関数
ユーザー ecotteaecottea
提出日時 2022-10-04 01:14:25
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 1,365 bytes
コンパイル時間 8,837 ms
コンパイル使用メモリ 168,272 KB
実行使用メモリ 188,748 KB
最終ジャッジ日時 2024-06-08 18:09:48
合計ジャッジ時間 10,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
32,896 KB
testcase_01 AC 48 ms
33,024 KB
testcase_02 AC 46 ms
33,004 KB
testcase_03 AC 46 ms
32,896 KB
testcase_04 AC 46 ms
32,768 KB
testcase_05 AC 45 ms
32,972 KB
testcase_06 AC 48 ms
32,768 KB
testcase_07 AC 50 ms
32,768 KB
testcase_08 AC 45 ms
32,896 KB
testcase_09 AC 46 ms
32,748 KB
testcase_10 AC 46 ms
32,992 KB
testcase_11 AC 46 ms
32,896 KB
testcase_12 AC 45 ms
32,896 KB
testcase_13 AC 46 ms
188,748 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (79 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.cs(17,22): warning SYSLIB0021: 'MD5CryptoServiceProvider' は旧形式です ('Derived cryptographic types are obsolete. Use the Create method on the base type instead.') (https://aka.ms/dotnet-warnings/SYSLIB0021) [/home/judge/data/code/main.csproj]
/home/judge/data/code/Main.cs(33,23): warning SYSLIB0021: 'MD5CryptoServiceProvider' は旧形式です ('Derived cryptographic types are obsolete. Use the Create method on the base type instead.') (https://aka.ms/dotnet-warnings/SYSLIB0021) [/home/judge/data/code/main.csproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// https://atmarkit.itmedia.co.jp/fdotnet/dotnettips/964computehash/computehash.html

using System;
using System.Security.Cryptography;
using System.Text;

class Program
{
  static void Main()
  {
    string originalText = Console.ReadLine();

    // テキストをUTF-8エンコードでバイト配列化
    byte[] byteValue = Encoding.UTF8.GetBytes(originalText);

    // MD5のハッシュ値を取得する
    MD5 crypto = new MD5CryptoServiceProvider();
    byte[] hashValue = crypto.ComputeHash(byteValue);

    // バイト配列をUTF8エンコードで文字列化
    StringBuilder hashedText = new StringBuilder();
    for (int i = 0; i < hashValue.Length; i++)
    {
      hashedText.AppendFormat("{0:x2}", hashValue[i]);
    }
    
    string originalText2 = hashedText.ToString();
    
    // テキストをUTF-8エンコードでバイト配列化
    byte[] byteValue2 = Encoding.UTF8.GetBytes(originalText2);

    // MD5のハッシュ値を取得する
    MD5 crypto2 = new MD5CryptoServiceProvider();
    byte[] hashValue2 = crypto.ComputeHash(byteValue2);

    // バイト配列をUTF8エンコードで文字列化
    StringBuilder hashedText2 = new StringBuilder();
    for (int i = 0; i < hashValue2.Length; i++)
    {
      hashedText2.AppendFormat("{0:x2}", hashValue2[i]);
    }
    Console.WriteLine(hashedText2.ToString());
  }
}
0