結果

問題 No.1183 コイン遊び
ユーザー bluemeganebluemegane
提出日時 2020-08-29 07:12:37
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 104,916 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-11-14 05:09:57
合計ジャッジ時間 12,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,116 KB
testcase_01 AC 24 ms
23,900 KB
testcase_02 AC 24 ms
23,644 KB
testcase_03 AC 24 ms
23,768 KB
testcase_04 AC 24 ms
24,080 KB
testcase_05 AC 24 ms
23,960 KB
testcase_06 AC 24 ms
26,004 KB
testcase_07 AC 24 ms
23,956 KB
testcase_08 AC 29 ms
24,148 KB
testcase_09 AC 29 ms
24,532 KB
testcase_10 AC 32 ms
25,520 KB
testcase_11 AC 40 ms
27,916 KB
testcase_12 AC 217 ms
76,312 KB
testcase_13 AC 203 ms
72,088 KB
testcase_14 AC 321 ms
101,080 KB
testcase_15 AC 345 ms
102,232 KB
testcase_16 AC 338 ms
108,416 KB
testcase_17 AC 338 ms
100,296 KB
testcase_18 AC 340 ms
104,064 KB
testcase_19 AC 339 ms
104,196 KB
testcase_20 AC 344 ms
102,332 KB
testcase_21 AC 332 ms
106,492 KB
testcase_22 AC 334 ms
106,404 KB
testcase_23 AC 330 ms
102,148 KB
testcase_24 AC 333 ms
102,192 KB
testcase_25 AC 338 ms
102,396 KB
testcase_26 AC 356 ms
102,276 KB
testcase_27 AC 344 ms
102,292 KB
testcase_28 AC 340 ms
106,400 KB
testcase_29 AC 331 ms
102,452 KB
testcase_30 AC 336 ms
106,492 KB
testcase_31 AC 341 ms
104,200 KB
testcase_32 AC 341 ms
102,272 KB
testcase_33 AC 346 ms
102,580 KB
testcase_34 AC 345 ms
106,396 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        getAns(n);
    }
    static void getAns (int n)
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        string[] line2 = Console.ReadLine().Trim().Split(' ');
        var count = 0;
        var pre = true;
        for (int i = 0; i < n; i++)
        {
            var t = line[i] == line2[i];
            if (t && !pre) count++;
            pre = t;
        }
        if (!pre) count++;
        Console.WriteLine(count);
    }
}
0