結果
| 問題 | No.18 うーさー暗号 |
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-06-20 11:33:57 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 29 ms / 5,000 ms |
| コード長 | 532 bytes |
| コンパイル時間 | 1,118 ms |
| コンパイル使用メモリ | 102,528 KB |
| 実行使用メモリ | 18,304 KB |
| 最終ジャッジ日時 | 2024-12-16 05:09:46 |
| 合計ジャッジ時間 | 2,232 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / 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
{
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