結果

問題 No.18 うーさー暗号
ユーザー k-a-rgbk-a-rgb
提出日時 2023-09-27 14:28:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 5,000 ms
コード長 818 bytes
コンパイル時間 4,285 ms
コンパイル使用メモリ 108,356 KB
実行使用メモリ 25,420 KB
最終ジャッジ日時 2024-07-20 08:32:19
合計ジャッジ時間 5,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,256 KB
testcase_01 AC 23 ms
23,340 KB
testcase_02 AC 23 ms
23,220 KB
testcase_03 AC 25 ms
23,252 KB
testcase_04 AC 24 ms
23,508 KB
testcase_05 AC 24 ms
25,140 KB
testcase_06 AC 23 ms
21,428 KB
testcase_07 AC 25 ms
23,472 KB
testcase_08 AC 25 ms
25,420 KB
testcase_09 AC 25 ms
23,256 KB
testcase_10 AC 23 ms
23,116 KB
testcase_11 AC 23 ms
23,632 KB
testcase_12 AC 25 ms
23,504 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;

namespace PracticeAtCoder
{
    class Program
    {
        static void Main(string[] args)
        {
			
			
			//018うーさー暗号
			
			
			//入力
			string sA = Console.ReadLine();
			//int[] after = t.Select(s => int.Parse(s)).ToArray();
			char[] chaA = sA.ToCharArray();
			
			int x = 0;
			int chY = 0;
			
			foreach(char chaB in  chaA){
				
				// 65:A 90:Z 
				x++;
				x= x%26;
				chY = (int)chaB;
				if(chY - x <65){
					chY = chaB +26;
				}
				
				chY = chY - x;
				Console.Write((char)chY); // 出力:97
			
				
			}
			/*
			char c1 = 'a';
			int code1 = (int)c1;
			Console.WriteLine(code1); // 出力:97
			
			int code3 = 99;
			char c3 = (char)code3;
			Console.WriteLine(c3); // 出力:c
			*/
		}
    }
}
0