結果

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

ソースコード

diff #

n = int(input())

ss = [input() for i in range(n)]

secs = set()

for i in range(n):
    for j in range(n):
        if i != j:
            secs.add(ss[i] + ss[j])

print(len(secs))
0