結果

問題 No.494 yukicoder
ユーザー mbanmban
提出日時 2017-03-25 11:43:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 100,060 KB
実行使用メモリ 22,604 KB
最終ジャッジ日時 2023-09-20 10:32:44
合計ジャッジ時間 3,211 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
20,460 KB
testcase_01 AC 48 ms
22,604 KB
testcase_02 AC 48 ms
20,524 KB
testcase_03 AC 47 ms
18,528 KB
testcase_04 AC 48 ms
20,536 KB
testcase_05 AC 47 ms
20,396 KB
testcase_06 AC 48 ms
20,408 KB
testcase_07 AC 48 ms
20,460 KB
testcase_08 AC 48 ms
20,412 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.Linq;
using System.IO;
using System.Text;
using System.Collections;
using System.Collections.Generic;

class Solution
{
    static void Main(string[] args)
    {
        string s = Console.ReadLine();
        string yuki = "yukicoder";
        for (int i = 0; i < 9; i++)
        {
            if (yuki[i] != s[i])
            {
                Console.WriteLine(yuki[i].ToString());
            }
        }
    }
}
0