結果

問題 No.481 1から10
ユーザー oreoreoresanoreoreoresan
提出日時 2018-02-14 13:56:50
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 903 ms
コンパイル使用メモリ 108,340 KB
実行使用メモリ 25,824 KB
最終ジャッジ日時 2024-06-01 09:05:27
合計ジャッジ時間 1,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,852 KB
testcase_01 AC 26 ms
23,984 KB
testcase_02 AC 25 ms
21,688 KB
testcase_03 AC 25 ms
23,984 KB
testcase_04 AC 27 ms
24,032 KB
testcase_05 AC 26 ms
24,168 KB
testcase_06 AC 26 ms
23,856 KB
testcase_07 AC 27 ms
23,852 KB
testcase_08 AC 26 ms
23,936 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {

            string[] str = Console.ReadLine().Split(' ');//2つ以上のスペース区切り入力の取得

            string[] ncen = new string[11];
            for (int i = 0; i < 9; i++)
            {
                ncen[i] = str[i];
            }
            for(int i = 0; i < 9;i++)
            {
                if((i+1) != int.Parse(ncen[i]))
                {
                    Console.WriteLine(i+1);
                    break;
                }
            }
        }
    }
}
0