結果

問題 No.18 うーさー暗号
ユーザー changta_15changta_15
提出日時 2019-09-02 23:51:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 5,000 ms
コード長 1,236 bytes
コンパイル時間 987 ms
コンパイル使用メモリ 105,344 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-05-10 01:15:24
合計ジャッジ時間 2,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,280 KB
testcase_01 AC 23 ms
17,408 KB
testcase_02 AC 23 ms
17,408 KB
testcase_03 AC 24 ms
18,688 KB
testcase_04 AC 24 ms
17,408 KB
testcase_05 AC 23 ms
17,536 KB
testcase_06 AC 24 ms
18,176 KB
testcase_07 AC 24 ms
18,560 KB
testcase_08 AC 23 ms
18,304 KB
testcase_09 AC 24 ms
18,048 KB
testcase_10 AC 23 ms
17,536 KB
testcase_11 AC 24 ms
17,536 KB
testcase_12 AC 24 ms
17,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
namespace test9002
{
    class Program
    {
        public static readonly int alphaCount = 26;
        public static readonly char[] alphas = new char[26] { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };

        static void Main()
        {
            var arg = Console.ReadLine().Trim();
            char tempChar = 'a';
            int charOrder = 0;
            string outputWord = "";
            int reverseCount = 0;
            for (int i = 0; i < arg.Length; i++)
            {
                tempChar = arg[i];
                charOrder = Array.IndexOf(alphas, tempChar);
                reverseCount = (i + 1) % alphaCount;
                if ((charOrder - reverseCount) >= 0)
                {
                    outputWord += alphas[charOrder - reverseCount];
                }
                else if ((charOrder - reverseCount) < 0)
                {
                    outputWord += alphas[charOrder - reverseCount + 26];
                }
                else
                {
                    outputWord += tempChar;
                }
            }
            Console.WriteLine(outputWord);
        }
    }
}
0