結果
問題 | No.18 うーさー暗号 |
ユーザー | りな |
提出日時 | 2023-04-27 09:41:00 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 46 ms / 5,000 ms |
コード長 | 1,570 bytes |
コンパイル時間 | 9,664 ms |
コンパイル使用メモリ | 164,244 KB |
実行使用メモリ | 181,140 KB |
最終ジャッジ日時 | 2024-11-16 17:48:49 |
合計ジャッジ時間 | 8,110 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
27,340 KB |
testcase_01 | AC | 43 ms
27,264 KB |
testcase_02 | AC | 44 ms
27,392 KB |
testcase_03 | AC | 45 ms
27,264 KB |
testcase_04 | AC | 45 ms
27,264 KB |
testcase_05 | AC | 44 ms
27,136 KB |
testcase_06 | AC | 46 ms
27,264 KB |
testcase_07 | AC | 45 ms
27,136 KB |
testcase_08 | AC | 42 ms
27,264 KB |
testcase_09 | AC | 44 ms
27,264 KB |
testcase_10 | AC | 42 ms
27,240 KB |
testcase_11 | AC | 42 ms
27,240 KB |
testcase_12 | AC | 44 ms
181,140 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (99 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]); } } } } }