結果

問題 No.182 新規性の虜
ユーザー chankou0920chankou0920
提出日時 2017-10-17 15:24:16
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 463 bytes
コンパイル時間 1,858 ms
コンパイル使用メモリ 104,936 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-11-17 21:54:20
合計ジャッジ時間 80,531 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
39,168 KB
testcase_01 AC 21 ms
22,784 KB
testcase_02 AC 22 ms
42,624 KB
testcase_03 AC 20 ms
22,656 KB
testcase_04 AC 21 ms
42,112 KB
testcase_05 AC 21 ms
40,064 KB
testcase_06 AC 20 ms
37,120 KB
testcase_07 AC 20 ms
23,168 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 21 ms
23,168 KB
testcase_14 AC 21 ms
23,896 KB
testcase_15 AC 20 ms
23,040 KB
testcase_16 AC 21 ms
17,664 KB
testcase_17 AC 20 ms
17,408 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 3,671 ms
20,288 KB
testcase_21 TLE -
testcase_22 AC 4,803 ms
21,376 KB
testcase_23 AC 21 ms
17,664 KB
testcase_24 TLE -
testcase_25 AC 38 ms
22,208 KB
testcase_26 AC 1,701 ms
19,200 KB
testcase_27 AC 22 ms
17,792 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;

public class Program {
	public static void Main(string[] args) {
		Console.ReadLine(); // n
		string[] s = Console.ReadLine().Split(' ');
		
		int count = 0;
		for (int i = 0; i < s.Length; i++) {
			bool isSame = false;
			for (int j = 0; j < s.Length; j++) {
				if (i == j) {
					continue;
				} else if (s[i].Equals(s[j])) {
					isSame = true;
					break;
				}
			}
			if (!isSame) {
				count++;
			}
		}
		
		Console.WriteLine(count);
	}
}
0