結果
問題 | No.18 うーさー暗号 |
ユーザー | りな |
提出日時 | 2023-04-27 09:41:00 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 50 ms / 5,000 ms |
コード長 | 1,570 bytes |
コンパイル時間 | 7,960 ms |
コンパイル使用メモリ | 165,580 KB |
実行使用メモリ | 181,656 KB |
最終ジャッジ日時 | 2024-04-28 05:30:08 |
合計ジャッジ時間 | 9,293 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
27,136 KB |
testcase_01 | AC | 48 ms
27,136 KB |
testcase_02 | AC | 49 ms
27,120 KB |
testcase_03 | AC | 50 ms
27,256 KB |
testcase_04 | AC | 49 ms
27,136 KB |
testcase_05 | AC | 47 ms
27,520 KB |
testcase_06 | AC | 49 ms
27,264 KB |
testcase_07 | AC | 50 ms
27,136 KB |
testcase_08 | AC | 50 ms
27,264 KB |
testcase_09 | AC | 50 ms
27,392 KB |
testcase_10 | AC | 47 ms
27,132 KB |
testcase_11 | AC | 47 ms
27,008 KB |
testcase_12 | AC | 48 ms
181,656 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (105 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System.Collections.Generic; using System; namespace yukicoder { class Program { static void Main(string[] args) { var X = Console.ReadLine(); int i, c, e, d; List<string> list = new List<string>() { "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"}; var z = X.Split(" "); string[] str = new string[X.Length]; //文字分割 for (int j = 0; j < X.Length; j++) { str[j] = z[0].Substring(j , 1); } for(i = 1; i <= X.Length; i++) { //int e = 0; //int d = 0; c = list.IndexOf(str[i - 1]) + 1;//アルファベットの要素番号取得 d = c - i;//アルファベットの要素番号から文字列iを引く e = (d - 1) % 26;//要素の中身がほしいアルファベット if(e < 0) { e = e * -1; int ans = (26 - e) % 26; Console.Write(list[ans]); } else { Console.Write(list[e]); } } } } }