結果

問題 No.18 うーさー暗号
ユーザー ganariyaganariya
提出日時 2017-02-19 20:06:35
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 22 ms / 5,000 ms
コード長 732 bytes
コンパイル時間 1,069 ms
コンパイル使用メモリ 107,588 KB
実行使用メモリ 25,400 KB
最終ジャッジ日時 2024-07-07 06:26:02
合計ジャッジ時間 1,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
23,384 KB
testcase_01 AC 20 ms
23,384 KB
testcase_02 AC 22 ms
23,352 KB
testcase_03 AC 22 ms
23,340 KB
testcase_04 AC 20 ms
23,132 KB
testcase_05 AC 21 ms
23,096 KB
testcase_06 AC 20 ms
23,256 KB
testcase_07 AC 22 ms
25,400 KB
testcase_08 AC 22 ms
23,600 KB
testcase_09 AC 21 ms
23,240 KB
testcase_10 AC 19 ms
23,384 KB
testcase_11 AC 19 ms
25,172 KB
testcase_12 AC 21 ms
23,136 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.Generic;
using System.Linq;
using System.Text;
using System.IO;


namespace StartFinish
{
    class Program
    {
        static void Main(string[] args)
        {
            var charArray = Console.ReadLine().ToCharArray();

            var length = charArray.Length;

            for (int i = 0; i < length; i++)
            {
                charArray[i] -= (char)((i + 1) % 26);
                if (charArray[i] < 'A')
                {
                    charArray[i] = (char)(charArray[i] + 26);
                }
            }
            foreach(var c in charArray)
            {
                Console.Write(c);
            }
            Console.WriteLine();
        }

    }
}


0