結果

問題 No.2737 Compound Word
ユーザー sk4rdsk4rd
提出日時 2024-04-20 13:13:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 59,284 KB
最終ジャッジ日時 2024-10-12 08:39:08
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,380 KB
testcase_01 AC 38 ms
52,152 KB
testcase_02 AC 38 ms
52,952 KB
testcase_03 AC 37 ms
52,976 KB
testcase_04 AC 38 ms
52,688 KB
testcase_05 AC 37 ms
53,220 KB
testcase_06 AC 38 ms
53,760 KB
testcase_07 AC 37 ms
53,768 KB
testcase_08 AC 38 ms
52,140 KB
testcase_09 AC 45 ms
59,284 KB
testcase_10 AC 43 ms
58,648 KB
testcase_11 AC 38 ms
53,384 KB
testcase_12 AC 42 ms
52,528 KB
testcase_13 AC 42 ms
52,304 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 37 ms
52,576 KB
testcase_16 AC 38 ms
53,340 KB
testcase_17 AC 39 ms
53,592 KB
testcase_18 AC 38 ms
53,100 KB
testcase_19 AC 37 ms
52,616 KB
testcase_20 AC 38 ms
53,944 KB
testcase_21 AC 37 ms
52,924 KB
testcase_22 AC 41 ms
52,648 KB
testcase_23 AC 39 ms
51,880 KB
testcase_24 AC 42 ms
53,136 KB
testcase_25 AC 37 ms
53,124 KB
testcase_26 AC 42 ms
59,276 KB
testcase_27 AC 37 ms
53,172 KB
testcase_28 AC 44 ms
58,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = set()
s = [input() for _ in range(n)]
for i in range(n):
    for j in range(i+1, n):
        ans.add(s[i]+s[j])
        ans.add(s[j]+s[i])
print(len(ans))
0