結果

問題 No.2737 Compound Word
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 18:44:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-06-10 18:44:08
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,676 KB
testcase_01 AC 35 ms
52,868 KB
testcase_02 AC 33 ms
52,036 KB
testcase_03 AC 33 ms
52,516 KB
testcase_04 AC 33 ms
52,336 KB
testcase_05 AC 33 ms
52,236 KB
testcase_06 AC 33 ms
52,632 KB
testcase_07 AC 36 ms
52,572 KB
testcase_08 AC 32 ms
52,820 KB
testcase_09 AC 37 ms
60,544 KB
testcase_10 AC 37 ms
60,280 KB
testcase_11 AC 33 ms
52,156 KB
testcase_12 AC 31 ms
53,132 KB
testcase_13 AC 32 ms
53,124 KB
testcase_14 AC 34 ms
52,560 KB
testcase_15 AC 34 ms
52,496 KB
testcase_16 AC 33 ms
52,496 KB
testcase_17 AC 33 ms
52,312 KB
testcase_18 AC 32 ms
53,964 KB
testcase_19 AC 32 ms
53,084 KB
testcase_20 AC 32 ms
53,000 KB
testcase_21 AC 33 ms
53,156 KB
testcase_22 AC 32 ms
53,652 KB
testcase_23 AC 33 ms
52,488 KB
testcase_24 AC 32 ms
52,200 KB
testcase_25 AC 33 ms
53,252 KB
testcase_26 AC 44 ms
59,252 KB
testcase_27 AC 34 ms
52,420 KB
testcase_28 AC 38 ms
58,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [input() for _ in range(N)]
res = set()
for i in range(N):
    for j in range(i + 1, N):
        res.add(S[i] + S[j])
        res.add(S[j] + S[i])
print(len(res))
0