結果

問題 No.18 うーさー暗号
ユーザー keymoonkeymoon
提出日時 2019-02-23 01:33:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 3,970 ms
コンパイル使用メモリ 104,832 KB
実行使用メモリ 25,468 KB
最終ジャッジ日時 2023-08-17 21:15:00
合計ジャッジ時間 5,492 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
21,480 KB
testcase_01 AC 54 ms
21,388 KB
testcase_02 AC 53 ms
21,408 KB
testcase_03 AC 53 ms
21,368 KB
testcase_04 AC 53 ms
21,428 KB
testcase_05 AC 54 ms
23,400 KB
testcase_06 AC 53 ms
21,460 KB
testcase_07 AC 54 ms
25,468 KB
testcase_08 AC 54 ms
21,496 KB
testcase_09 AC 53 ms
21,404 KB
testcase_10 AC 54 ms
23,452 KB
testcase_11 AC 53 ms
23,472 KB
testcase_12 AC 55 ms
21,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using System.Diagnostics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;

class P
{
    static void Main()
    {
        Console.WriteLine(string.Join("",Console.ReadLine().Select((x, y) => (char)(((x - 'A') + 26 * 1333 - (y + 1)) % 26 + 'A'))));
    }
}
0