結果
問題 | No.18 うーさー暗号 |
ユーザー | phspls |
提出日時 | 2020-03-24 23:17:47 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 5,000 ms |
コード長 | 796 bytes |
コンパイル時間 | 1,791 ms |
コンパイル使用メモリ | 112,244 KB |
実行使用メモリ | 27,088 KB |
最終ジャッジ日時 | 2024-06-10 09:29:38 |
合計ジャッジ時間 | 2,152 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
24,768 KB |
testcase_01 | AC | 27 ms
27,088 KB |
testcase_02 | AC | 27 ms
24,900 KB |
testcase_03 | AC | 27 ms
22,708 KB |
testcase_04 | AC | 27 ms
26,832 KB |
testcase_05 | AC | 27 ms
24,644 KB |
testcase_06 | AC | 27 ms
24,512 KB |
testcase_07 | AC | 28 ms
26,824 KB |
testcase_08 | AC | 27 ms
22,580 KB |
testcase_09 | AC | 28 ms
26,692 KB |
testcase_10 | AC | 27 ms
25,288 KB |
testcase_11 | AC | 27 ms
26,952 KB |
testcase_12 | AC | 28 ms
25,152 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.Linq; using System.Collections.Generic; public class P0018 { public static void Main() { char[] s = Console.ReadLine().Trim().ToCharArray(); char[] alphabets = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".ToCharArray(); Dictionary<char, int> alphabet2num = Enumerable.Range(0, alphabets.Length).ToDictionary(i => alphabets[i], i => i); var result = String.Join( "" , Enumerable.Range(0, s.Length) .Select(i => alphabet2num.GetValueOrDefault(s[i]) - i - 1) .Select(i => i % alphabets.Length) .Select(i => i + alphabets.Length) .Select(i => i % alphabets.Length) .Select(i => alphabets[i]) ); Console.WriteLine(result); } }