結果
問題 | No.2737 Compound Word |
ユーザー | pirosiki197 |
提出日時 | 2024-04-20 11:41:18 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 43 ms / 2,000 ms |
コード長 | 233 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 58,112 KB |
最終ジャッジ日時 | 2024-10-12 07:02:46 |
合計ジャッジ時間 | 2,301 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 27 |
ソースコード
def main(): import itertools n = int(input()) s = [input() for _ in range(n)] st = set() for a, b in itertools.permutations(s, 2): st.add(a + b) print(len(st)) if __name__ == "__main__": main()