結果
問題 | No.18 うーさー暗号 |
ユーザー |
|
提出日時 | 2019-02-04 14:53:36 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 5,000 ms |
コード長 | 386 bytes |
コンパイル時間 | 1,036 ms |
コンパイル使用メモリ | 103,552 KB |
実行使用メモリ | 18,560 KB |
最終ジャッジ日時 | 2024-12-25 16:23:22 |
合計ジャッジ時間 | 1,864 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;public class Program{public static void Main(string[] args){var s = Console.ReadLine();string ans = string.Empty;int mod = 26;for (var i =0; i< s.Length; i++){int add = (((s[i] - 'A') - (i+1)) % mod + mod ) % mod;ans += (char)('A' + add);}Console.WriteLine(ans);}}