結果

問題 No.182 新規性の虜
ユーザー mencottonmencotton
提出日時 2017-12-29 21:08:02
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 683 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 104,832 KB
実行使用メモリ 45,312 KB
最終ジャッジ日時 2024-12-21 10:36:35
合計ジャッジ時間 52,430 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
45,312 KB
testcase_01 AC 31 ms
34,084 KB
testcase_02 AC 28 ms
24,064 KB
testcase_03 AC 31 ms
33,972 KB
testcase_04 AC 32 ms
44,928 KB
testcase_05 AC 30 ms
31,680 KB
testcase_06 AC 30 ms
18,944 KB
testcase_07 AC 28 ms
19,072 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,387 ms
22,144 KB
testcase_13 AC 31 ms
19,200 KB
testcase_14 AC 30 ms
18,944 KB
testcase_15 AC 31 ms
18,944 KB
testcase_16 AC 31 ms
18,816 KB
testcase_17 AC 31 ms
19,072 KB
testcase_18 AC 1,606 ms
24,192 KB
testcase_19 AC 1,136 ms
22,592 KB
testcase_20 AC 682 ms
21,008 KB
testcase_21 AC 1,825 ms
24,704 KB
testcase_22 AC 867 ms
22,656 KB
testcase_23 AC 30 ms
18,816 KB
testcase_24 TLE -
testcase_25 AC 59 ms
24,064 KB
testcase_26 AC 280 ms
20,224 KB
testcase_27 AC 29 ms
19,072 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray();
            int ret = 0;
            for (int i = 0; i < n; i++)
            {
                bool flag = true;
                for (int j = 0; j < n && flag; j++)
                {
                    if (i == j) continue;
                    if (x[i] == x[j]) flag = false;
                }
                if (flag) ret++;
            }
            Console.WriteLine(ret);
        }
    }
}
0