結果
問題 | No.18 うーさー暗号 |
ユーザー | jin128 |
提出日時 | 2016-08-30 15:10:48 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 5,000 ms |
コード長 | 426 bytes |
コンパイル時間 | 773 ms |
コンパイル使用メモリ | 107,812 KB |
実行使用メモリ | 25,560 KB |
最終ジャッジ日時 | 2024-07-07 06:14:59 |
合計ジャッジ時間 | 1,709 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,144 KB |
testcase_01 | AC | 24 ms
25,016 KB |
testcase_02 | AC | 24 ms
23,392 KB |
testcase_03 | AC | 24 ms
25,560 KB |
testcase_04 | AC | 24 ms
25,140 KB |
testcase_05 | AC | 23 ms
23,392 KB |
testcase_06 | AC | 22 ms
23,008 KB |
testcase_07 | AC | 23 ms
23,260 KB |
testcase_08 | AC | 23 ms
23,136 KB |
testcase_09 | AC | 23 ms
23,260 KB |
testcase_10 | AC | 24 ms
23,128 KB |
testcase_11 | AC | 23 ms
23,388 KB |
testcase_12 | AC | 24 ms
23,256 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; class S26_cipher{ public static int Main(string[] args){ char[] s = new char[1024]; int asc; string s1 = Console.ReadLine(); s = s1.ToCharArray(); for(int i = 0; i < s.Length; i++){ asc = ((int)s[i] - 65 - (i+1))%26; if(asc < 0){ s[i] = (char)(asc + 26 + 65); }else{ s[i] = (char)(asc + 65); } } Console.WriteLine(s); return 0; } }