結果
問題 | No.3000 enuemu暗号 |
ユーザー | mban |
提出日時 | 2017-01-11 01:56:28 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 1,504 bytes |
コンパイル時間 | 995 ms |
コンパイル使用メモリ | 113,964 KB |
実行使用メモリ | 26,556 KB |
最終ジャッジ日時 | 2024-12-18 01:10:07 |
合計ジャッジ時間 | 1,617 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
26,556 KB |
testcase_01 | AC | 32 ms
22,832 KB |
testcase_02 | AC | 35 ms
24,648 KB |
testcase_03 | AC | 32 ms
24,776 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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()); } }