結果

問題 No.938 賢人を探せ
ユーザー bluemeganebluemegane
提出日時 2019-12-04 21:02:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 810 ms
コンパイル使用メモリ 112,924 KB
実行使用メモリ 32,548 KB
最終ジャッジ日時 2024-12-14 11:47:32
合計ジャッジ時間 2,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
30,524 KB
testcase_01 AC 33 ms
28,056 KB
testcase_02 AC 31 ms
28,320 KB
testcase_03 AC 32 ms
26,148 KB
testcase_04 AC 33 ms
28,304 KB
testcase_05 AC 32 ms
26,548 KB
testcase_06 AC 32 ms
26,140 KB
testcase_07 AC 33 ms
26,528 KB
testcase_08 AC 56 ms
30,636 KB
testcase_09 AC 56 ms
30,512 KB
testcase_10 AC 31 ms
26,144 KB
testcase_11 AC 58 ms
31,188 KB
testcase_12 AC 56 ms
29,784 KB
testcase_13 AC 59 ms
31,920 KB
testcase_14 AC 57 ms
29,780 KB
testcase_15 AC 56 ms
29,788 KB
testcase_16 AC 55 ms
29,676 KB
testcase_17 AC 59 ms
31,656 KB
testcase_18 AC 57 ms
29,532 KB
testcase_19 AC 57 ms
29,524 KB
testcase_20 AC 58 ms
29,912 KB
testcase_21 AC 58 ms
29,776 KB
testcase_22 AC 102 ms
32,548 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