競プロ典型90問:027 - Sign Up Requests (★2)
問題
https://atcoder.jp/contests/typical90/tasks/typical90_aa
挑戦結果
- 挑戦日:2021/10/07
- 結果:解けた
- 時間:3分
考えたこと
- setに入れて、チェックするだけ
公式解説
解説を読んだふりかえり
- 特になし。
ソース
N = int(input()) S = set() for i in range(N): s = input() if not s in S: S.add(s) print(i+1)