結果

問題 No.2737 Compound Word
ユーザー swampswamp
提出日時 2024-04-20 10:39:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 60,160 KB
最終ジャッジ日時 2024-04-20 10:40:00
合計ジャッジ時間 2,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,412 KB
testcase_02 AC 37 ms
53,620 KB
testcase_03 AC 37 ms
52,140 KB
testcase_04 AC 37 ms
52,456 KB
testcase_05 AC 38 ms
52,900 KB
testcase_06 AC 37 ms
52,280 KB
testcase_07 AC 37 ms
52,960 KB
testcase_08 AC 38 ms
54,000 KB
testcase_09 AC 42 ms
60,100 KB
testcase_10 AC 46 ms
60,160 KB
testcase_11 AC 39 ms
52,156 KB
testcase_12 AC 38 ms
53,608 KB
testcase_13 AC 38 ms
52,504 KB
testcase_14 AC 36 ms
52,644 KB
testcase_15 AC 38 ms
52,760 KB
testcase_16 AC 37 ms
53,356 KB
testcase_17 AC 42 ms
58,868 KB
testcase_18 AC 39 ms
54,436 KB
testcase_19 AC 37 ms
52,316 KB
testcase_20 AC 40 ms
59,104 KB
testcase_21 AC 37 ms
53,224 KB
testcase_22 AC 38 ms
52,472 KB
testcase_23 AC 37 ms
52,888 KB
testcase_24 AC 39 ms
53,336 KB
testcase_25 AC 38 ms
52,868 KB
testcase_26 AC 41 ms
59,296 KB
testcase_27 AC 38 ms
54,232 KB
testcase_28 AC 42 ms
59,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

S = [input() for _ in range(n)]

d = {}
ans = 0
for i in range(n):
	for j in range(n):
		if i == j:
			continue
		s = S[i] + S[j]
		if s in d:
			continue
		d[s] = 1
		ans +=1 

print(ans)
0