結果

問題 No.2737 Compound Word
ユーザー ああいいああいい
提出日時 2024-04-29 14:08:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 60,212 KB
最終ジャッジ日時 2024-11-18 18:12:55
合計ジャッジ時間 2,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,960 KB
testcase_01 AC 39 ms
51,992 KB
testcase_02 AC 39 ms
52,560 KB
testcase_03 AC 41 ms
52,356 KB
testcase_04 AC 38 ms
52,488 KB
testcase_05 AC 39 ms
51,708 KB
testcase_06 AC 41 ms
53,856 KB
testcase_07 AC 38 ms
52,092 KB
testcase_08 AC 41 ms
51,836 KB
testcase_09 AC 46 ms
59,660 KB
testcase_10 AC 45 ms
59,504 KB
testcase_11 AC 39 ms
52,620 KB
testcase_12 AC 38 ms
52,820 KB
testcase_13 AC 40 ms
52,396 KB
testcase_14 AC 38 ms
52,648 KB
testcase_15 AC 38 ms
52,360 KB
testcase_16 AC 37 ms
52,192 KB
testcase_17 AC 38 ms
53,180 KB
testcase_18 AC 37 ms
52,936 KB
testcase_19 AC 37 ms
52,128 KB
testcase_20 AC 38 ms
52,932 KB
testcase_21 AC 38 ms
52,444 KB
testcase_22 AC 38 ms
52,644 KB
testcase_23 AC 37 ms
52,280 KB
testcase_24 AC 38 ms
52,848 KB
testcase_25 AC 37 ms
52,640 KB
testcase_26 AC 43 ms
60,212 KB
testcase_27 AC 39 ms
52,208 KB
testcase_28 AC 42 ms
59,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [input() for _ in range(N)]

s = set()
for i in range(N):
	a = S[i]
	for j in range(i + 1,N):
		b = S[j]
		s.add(a + b)
		s.add(b + a)
print(len(s))
0