結果

問題 No.938 賢人を探せ
ユーザー bluemeganebluemegane
提出日時 2019-12-04 21:02:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 785 ms
コンパイル使用メモリ 105,216 KB
実行使用メモリ 28,416 KB
最終ジャッジ日時 2024-05-08 09:01:30
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
28,416 KB
testcase_01 AC 29 ms
20,096 KB
testcase_02 AC 29 ms
20,224 KB
testcase_03 AC 30 ms
20,352 KB
testcase_04 AC 30 ms
20,096 KB
testcase_05 AC 31 ms
20,224 KB
testcase_06 AC 30 ms
20,224 KB
testcase_07 AC 30 ms
20,224 KB
testcase_08 AC 53 ms
25,216 KB
testcase_09 AC 54 ms
25,088 KB
testcase_10 AC 29 ms
20,224 KB
testcase_11 AC 58 ms
26,240 KB
testcase_12 AC 56 ms
23,936 KB
testcase_13 AC 57 ms
24,192 KB
testcase_14 AC 55 ms
23,936 KB
testcase_15 AC 56 ms
24,064 KB
testcase_16 AC 56 ms
24,064 KB
testcase_17 AC 55 ms
24,192 KB
testcase_18 AC 56 ms
24,192 KB
testcase_19 AC 57 ms
24,192 KB
testcase_20 AC 57 ms
24,064 KB
testcase_21 AC 56 ms
24,192 KB
testcase_22 AC 101 ms
27,392 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        var c = new HashSet<string>();
        var ok = new HashSet<string>();
        var w = new List<string>();
        for (int i = 0; i < n; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var a = line[0];
            var b = line[1];
            w.Add(b);
            if (c.Add(a))
            c.Add(a);
            ok.Remove(a);
            if (c.Add(b))
            {
                ok.Add(b);
                c.Remove(b);
            }
        }
        var w2 = w.Distinct().ToList();
        for (int i = 0; i < w2.Count(); i++)
            if (ok.Contains(w2[i])) Console.WriteLine(w2[i]);
    }
}

0