結果
問題 | No.182 新規性の虜 |
ユーザー | 紙ぺーぱー |
提出日時 | 2015-04-13 06:05:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,775 bytes |
コンパイル時間 | 2,509 ms |
コンパイル使用メモリ | 115,160 KB |
実行使用メモリ | 33,896 KB |
最終ジャッジ日時 | 2024-07-04 14:06:43 |
合計ジャッジ時間 | 4,779 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
18,688 KB |
testcase_01 | AC | 23 ms
18,432 KB |
testcase_02 | AC | 23 ms
18,688 KB |
testcase_03 | AC | 23 ms
18,816 KB |
testcase_04 | AC | 24 ms
18,688 KB |
testcase_05 | AC | 26 ms
18,688 KB |
testcase_06 | AC | 24 ms
18,816 KB |
testcase_07 | AC | 26 ms
18,688 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 25 ms
18,688 KB |
testcase_14 | AC | 24 ms
18,816 KB |
testcase_15 | AC | 24 ms
18,560 KB |
testcase_16 | AC | 26 ms
18,688 KB |
testcase_17 | AC | 27 ms
18,688 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 22 ms
18,432 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 26 ms
18,432 KB |
evil01.txt | WA | - |
evil02.txt | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;using System.Collections.Generic;using System.Linq;static public class Program{static public void Main(){var n = readInteger().Validate(x => 1 <= x && x <= (int)1e5);var a = readInteger(n).ValidateArray(x => 1 <= x && x <= (int)1e9);if (n >= 10000)return;var ok = new bool[n];for (int i = 0; i < n; i++)ok[i] = true;for (int i = 0; i < n; i++){if (!ok[i])continue;for (int j = i + 1; j < n; j++){if (a[i] == a[j]){ok[i] = ok[j] = false;}}}Console.WriteLine(ok.Count(x => x));}static int readInteger(){var s = Console.ReadLine();return int.Parse(s);}static int[] readInteger(int n){var s = Console.ReadLine().Split(' ');if (s.Length != n)throw new Exception(string.Format("invalid input, expected{0} actual{1}", n, s.Length));var ret = new int[n];for (int i = 0; i < n; i++)ret[i] = int.Parse(s[i]);return ret;}static void readEOF(){if (Console.In.Peek() >= 0)throw new Exception("invalid input too long input file");}}static public class Ex{static public T Validate<T>(this T input, Func<T, bool> f){if (!f(input))throw new Exception("invalid input");return input;}static public T[] ValidateArray<T>(this T[] input, Func<T, bool> f){foreach (var x in input)if (!f(x))throw new Exception("invalid input");return input;}}