結果

問題 No.1217 せしすせそ
ユーザー bluemeganebluemegane
提出日時 2020-09-04 22:31:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 67,240 KB
実行使用メモリ 22,688 KB
最終ジャッジ日時 2023-08-17 17:21:34
合計ジャッジ時間 2,423 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
20,776 KB
testcase_01 AC 54 ms
22,684 KB
testcase_02 AC 54 ms
22,688 KB
testcase_03 AC 53 ms
20,748 KB
testcase_04 AC 54 ms
20,724 KB
testcase_05 AC 53 ms
18,648 KB
testcase_06 AC 53 ms
20,580 KB
testcase_07 AC 53 ms
20,552 KB
testcase_08 AC 53 ms
20,732 KB
testcase_09 AC 54 ms
22,664 KB
testcase_10 AC 53 ms
20,712 KB
testcase_11 AC 54 ms
20,840 KB
testcase_12 AC 53 ms
22,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var s0 = "abcdefghijklmnopqrstuvwxyz";
        var s = Console.ReadLine().Trim();
        getAns(s0, s);
    }
    static void getAns(string s0, string s)
    {
        for (int i = 0; i < 26; i++)
            if (s0[i] != s[i]) { Console.WriteLine("{0}to{1}", s0[i], s[i]); break; }
    }
}
0