結果
問題 | No.938 賢人を探せ |
ユーザー | Azumabashi |
提出日時 | 2020-05-04 15:15:22 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 95 ms / 2,000 ms |
コード長 | 419 bytes |
コンパイル時間 | 115 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 16,256 KB |
最終ジャッジ日時 | 2024-12-14 11:59:31 |
合計ジャッジ時間 | 2,286 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 95 ms
16,256 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | AC | 26 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,752 KB |
testcase_05 | AC | 28 ms
10,752 KB |
testcase_06 | AC | 28 ms
10,752 KB |
testcase_07 | AC | 28 ms
10,752 KB |
testcase_08 | AC | 68 ms
13,692 KB |
testcase_09 | AC | 74 ms
13,688 KB |
testcase_10 | AC | 28 ms
10,752 KB |
testcase_11 | AC | 79 ms
16,252 KB |
testcase_12 | AC | 70 ms
13,440 KB |
testcase_13 | AC | 70 ms
13,440 KB |
testcase_14 | AC | 70 ms
13,440 KB |
testcase_15 | AC | 69 ms
13,312 KB |
testcase_16 | AC | 66 ms
13,440 KB |
testcase_17 | AC | 71 ms
13,312 KB |
testcase_18 | AC | 69 ms
13,440 KB |
testcase_19 | AC | 71 ms
13,568 KB |
testcase_20 | AC | 72 ms
13,440 KB |
testcase_21 | AC | 73 ms
13,312 KB |
testcase_22 | AC | 90 ms
16,128 KB |
ソースコード
def main(): n = int(input()) cheating = [] cheated = [] checked = {} for _ in range(n): a, b = input().split() cheating.append(a) cheated.append(b) checked[b] = False cheating_set = set(cheating) for c in cheated: if c not in cheating_set and not checked[c]: print(c) checked[c] = True if __name__ == '__main__': main()