結果

問題 No.1217 せしすせそ
ユーザー NoNo
提出日時 2020-10-21 15:55:34
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 99,848 KB
実行使用メモリ 22,676 KB
最終ジャッジ日時 2023-09-28 14:13:53
合計ジャッジ時間 3,789 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
20,708 KB
testcase_01 AC 52 ms
20,580 KB
testcase_02 AC 51 ms
18,532 KB
testcase_03 AC 52 ms
20,740 KB
testcase_04 AC 52 ms
20,724 KB
testcase_05 AC 51 ms
20,588 KB
testcase_06 AC 52 ms
22,640 KB
testcase_07 AC 52 ms
22,640 KB
testcase_08 AC 54 ms
20,716 KB
testcase_09 AC 52 ms
20,536 KB
testcase_10 AC 52 ms
22,676 KB
testcase_11 AC 52 ms
18,616 KB
testcase_12 AC 51 ms
20,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace a
{
    class a
    {
        static void Main(string[] args)
        {
            var s = Console.ReadLine();
            var c = 'a';
            for (int i = 0; i < 26; i++)
            {
               if (s[i] != c + i)
                {
                    Console.WriteLine("{0}to{1}",(char)(c + i),s[i]);
                }
            }
        }
    }
}
0