結果
問題 | No.18 うーさー暗号 |
ユーザー | uma-pinehill |
提出日時 | 2018-05-22 18:31:23 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 25 ms / 5,000 ms |
コード長 | 594 bytes |
コンパイル時間 | 852 ms |
コンパイル使用メモリ | 106,496 KB |
実行使用メモリ | 18,432 KB |
最終ジャッジ日時 | 2024-06-28 15:47:52 |
合計ジャッジ時間 | 1,747 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
18,304 KB |
testcase_01 | AC | 24 ms
18,304 KB |
testcase_02 | AC | 24 ms
18,304 KB |
testcase_03 | AC | 24 ms
18,176 KB |
testcase_04 | AC | 24 ms
18,176 KB |
testcase_05 | AC | 24 ms
18,304 KB |
testcase_06 | AC | 25 ms
18,304 KB |
testcase_07 | AC | 24 ms
18,304 KB |
testcase_08 | AC | 24 ms
18,304 KB |
testcase_09 | AC | 24 ms
18,176 KB |
testcase_10 | AC | 23 ms
18,304 KB |
testcase_11 | AC | 24 ms
18,432 KB |
testcase_12 | AC | 23 ms
18,176 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; public class Program { static void Main() { string xx = new string(GetChar().ToArray()); Console.WriteLine(xx); } static IEnumerable<char> GetChar(){ int Moji = 0; int Count = 1; char tmp = (char)0; while((Moji = Console.Read()) != -1){ if(Moji <65 || Moji >90){ break; } tmp = (char)(( Moji - 65 + 26 - Count)%26 + 65); yield return tmp; Count = (Count + 1)%26; } } }