結果
| 問題 |
No.18 うーさー暗号
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
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;
}
}