結果
| 問題 | No.18 うーさー暗号 |
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-06-20 11:33:57 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 17 ms / 5,000 ms |
| コード長 | 532 bytes |
| 記録 | |
| コンパイル時間 | 3,288 ms |
| コンパイル使用メモリ | 106,648 KB |
| 実行使用メモリ | 26,936 KB |
| 最終ジャッジ日時 | 2026-05-26 10:22:44 |
| 合計ジャッジ時間 | 1,759 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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
{
static void Main()
{
string us = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
string s = Console.ReadLine();
for (int i = 0; i < s.Length; i++)
{
string temp = s.Substring(i, 1);
int num = us.IndexOf(temp, 0);
num = num - (i+1);
while(num<0)
{
num = 26 + num;
}
temp = us.Substring(num, 1);
Console.Write(temp);
}
Console.Write("\n");
}
}
funakoshi