結果

問題 No.1455 拡張ROTN
ユーザー bluemeganebluemegane
提出日時 2021-04-01 14:35:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 1,382 bytes
コンパイル時間 894 ms
コンパイル使用メモリ 112,780 KB
実行使用メモリ 25,976 KB
最終ジャッジ日時 2024-05-09 23:55:42
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,912 KB
testcase_01 AC 25 ms
25,836 KB
testcase_02 AC 25 ms
25,824 KB
testcase_03 AC 24 ms
25,964 KB
testcase_04 AC 25 ms
21,564 KB
testcase_05 AC 25 ms
25,856 KB
testcase_06 AC 24 ms
25,832 KB
testcase_07 AC 24 ms
23,784 KB
testcase_08 AC 24 ms
23,852 KB
testcase_09 AC 24 ms
23,988 KB
testcase_10 AC 25 ms
21,680 KB
testcase_11 AC 24 ms
24,044 KB
testcase_12 AC 24 ms
25,708 KB
testcase_13 AC 24 ms
25,692 KB
testcase_14 AC 24 ms
21,944 KB
testcase_15 AC 24 ms
21,680 KB
testcase_16 AC 24 ms
25,708 KB
testcase_17 AC 24 ms
23,912 KB
testcase_18 AC 24 ms
21,816 KB
testcase_19 AC 23 ms
23,916 KB
testcase_20 AC 25 ms
23,908 KB
testcase_21 AC 23 ms
23,936 KB
testcase_22 AC 24 ms
25,956 KB
testcase_23 AC 25 ms
25,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static string x0 = "CpCzNkSuTbEoA";
    static void Main()
    {
        var s = Console.ReadLine().Trim();
        var n = long.Parse(Console.ReadLine().Trim());
        getAns(s, n);
    }
    static void getAns (string s, long n)
    {
        var ans = "";
        var n26 =(int)( n % 26);
        foreach(var  x in s)
        {
            int tp;
            if (int.TryParse(x.ToString(), out tp)) ans += changeN(tp, n);
            else ans += changeC(x, n26);
        }
        Console.WriteLine(ans);
    }
    static string changeN (int t  , long a)
    {
        if (t + a <= 9) return (t + a).ToString();
        else
        {
            var ans = "";
            var a2 = (int)((t + a - 10) % 26);
            foreach(var x in x0)
            {
                ans += changeC(x, a2); 
            }
            return ans;
        }
    }
    static string changeC(char t, int a )
    {
        var s = "abcdefghijklmnopqrstuvwxyz";
        var s2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
        if (char.IsUpper(t))
        {
            var sh = t - 'A';
            sh += a;
            if (sh >= 26) sh -= 26;
            return s2[sh].ToString();
        }
        else
        {
            var sh = t - 'a';
            sh += a;
            if (sh >= 26) sh -= 26;
            return s[sh].ToString();
        }
    }
}
0