結果

問題 No.2737 Compound Word
ユーザー nouka28
提出日時 2024-04-20 10:38:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 58,880 KB
最終ジャッジ日時 2024-10-12 06:12:51
合計ジャッジ時間 2,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=[input()for i in range(n)]
st=set()
for i in range(n):
    for j in range(n):
        if i==j:continue
        st.add(s[i]+s[j])
print(len(st))
0