結果

問題 No.938 賢人を探せ
ユーザー mkawa2mkawa2
提出日時 2019-12-01 11:27:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,576 KB
最終ジャッジ日時 2024-05-08 08:57:40
合計ジャッジ時間 2,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
19,576 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 33 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 86 ms
14,372 KB
testcase_09 AC 87 ms
14,336 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 101 ms
18,440 KB
testcase_12 AC 85 ms
14,188 KB
testcase_13 AC 88 ms
14,056 KB
testcase_14 AC 84 ms
14,052 KB
testcase_15 AC 84 ms
14,060 KB
testcase_16 AC 84 ms
14,060 KB
testcase_17 AC 84 ms
14,056 KB
testcase_18 AC 83 ms
14,180 KB
testcase_19 AC 86 ms
14,052 KB
testcase_20 AC 85 ms
14,056 KB
testcase_21 AC 86 ms
14,056 KB
testcase_22 AC 132 ms
19,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    ok = set()
    ng = set()
    name_to_i = {}
    n = int(input())
    for i in range(n):
        ng_name, ok_name = input().split()
        ok.add(ok_name)
        ng.add(ng_name)
        if ng_name not in name_to_i:
            name_to_i[ng_name] = i * 2
        if ok_name not in name_to_i:
            name_to_i[ok_name] = i * 2 + 1
    ok -= ng
    for name in sorted(ok, key=lambda x: name_to_i[x]):
        print(name)

main()
0