結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,368 KB
testcase_01 AC 35 ms
53,452 KB
testcase_02 AC 36 ms
53,304 KB
testcase_03 AC 35 ms
53,972 KB
testcase_04 AC 34 ms
52,364 KB
testcase_05 AC 35 ms
52,320 KB
testcase_06 AC 36 ms
52,840 KB
testcase_07 AC 36 ms
52,432 KB
testcase_08 AC 38 ms
52,692 KB
testcase_09 AC 43 ms
59,188 KB
testcase_10 AC 41 ms
59,452 KB
testcase_11 AC 34 ms
53,176 KB
testcase_12 AC 34 ms
52,280 KB
testcase_13 AC 38 ms
52,272 KB
testcase_14 AC 35 ms
53,024 KB
testcase_15 AC 36 ms
53,832 KB
testcase_16 AC 35 ms
53,108 KB
testcase_17 AC 38 ms
52,548 KB
testcase_18 AC 36 ms
52,468 KB
testcase_19 AC 37 ms
52,896 KB
testcase_20 AC 37 ms
53,160 KB
testcase_21 AC 36 ms
52,756 KB
testcase_22 AC 38 ms
53,036 KB
testcase_23 AC 37 ms
53,676 KB
testcase_24 AC 39 ms
53,624 KB
testcase_25 AC 36 ms
52,748 KB
testcase_26 AC 41 ms
60,280 KB
testcase_27 AC 36 ms
52,604 KB
testcase_28 AC 43 ms
60,272 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