結果

問題 No.3000 enuemu暗号
ユーザー mbanmban
提出日時 2017-01-11 01:56:28
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 1,504 bytes
コンパイル時間 4,636 ms
コンパイル使用メモリ 103,640 KB
実行使用メモリ 23,444 KB
最終ジャッジ日時 2023-08-22 22:29:53
合計ジャッジ時間 3,751 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
21,440 KB
testcase_01 AC 60 ms
21,404 KB
testcase_02 AC 59 ms
23,444 KB
testcase_03 AC 59 ms
23,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;


class Magatro
{
    const string Source = "pfnovuaxqwmbgrihcdejklstyz";
    const string Anser  = "orangeciphbqsuftlmdxyzvwjk";
    static string a;
    static void Main()
    {
        Scan();
        var D = new Dictionary<char, char>();
        for(int i = 0; i < Source.Length; i++)
        {
            D.Add(Source[i], Anser[i]);
        }
        char[] q = a.Select(ss=>D[ss]).ToArray();
        Console.WriteLine(new string(q)); 
    }
    static void Scan()
    {
        Scanner sc = new Scanner();
        a = sc.Next();
    }
}
public class Scanner
{
    public string[] S;
    private int Index;
    private char Separator;
    public Scanner(char separator=' ')
    {
        Index = 0;
        Separator = separator;
    }
    private string[] Line()
    {
        return Console.ReadLine().Split(Separator);
    }
    public string Next()
    {
        string result;
        if (S == null || Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
}
0