結果
問題 | No.18 うーさー暗号 |
ユーザー | changta_15 |
提出日時 | 2019-09-02 23:51:16 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 5,000 ms |
コード長 | 1,236 bytes |
コンパイル時間 | 991 ms |
コンパイル使用メモリ | 113,552 KB |
実行使用メモリ | 25,844 KB |
最終ジャッジ日時 | 2024-12-17 20:26:01 |
合計ジャッジ時間 | 1,934 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,512 KB |
testcase_01 | AC | 23 ms
25,600 KB |
testcase_02 | AC | 23 ms
23,344 KB |
testcase_03 | AC | 24 ms
23,856 KB |
testcase_04 | AC | 23 ms
23,596 KB |
testcase_05 | AC | 23 ms
25,476 KB |
testcase_06 | AC | 22 ms
25,844 KB |
testcase_07 | AC | 23 ms
23,344 KB |
testcase_08 | AC | 24 ms
25,712 KB |
testcase_09 | AC | 22 ms
23,344 KB |
testcase_10 | AC | 21 ms
23,340 KB |
testcase_11 | AC | 22 ms
21,424 KB |
testcase_12 | AC | 22 ms
23,600 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace test9002 { class Program { public static readonly int alphaCount = 26; public static readonly char[] alphas = new char[26] { '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' }; static void Main() { var arg = Console.ReadLine().Trim(); char tempChar = 'a'; int charOrder = 0; string outputWord = ""; int reverseCount = 0; for (int i = 0; i < arg.Length; i++) { tempChar = arg[i]; charOrder = Array.IndexOf(alphas, tempChar); reverseCount = (i + 1) % alphaCount; if ((charOrder - reverseCount) >= 0) { outputWord += alphas[charOrder - reverseCount]; } else if ((charOrder - reverseCount) < 0) { outputWord += alphas[charOrder - reverseCount + 26]; } else { outputWord += tempChar; } } Console.WriteLine(outputWord); } } }