結果

問題 No.2737 Compound Word
ユーザー 𖧱𖦸𖥩𖥣𖥩𖥣𖧱𖦸𖥩𖥣𖥩𖥣
提出日時 2024-04-30 11:52:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 60,212 KB
最終ジャッジ日時 2024-11-20 06:43:49
合計ジャッジ時間 2,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,708 KB
testcase_01 AC 37 ms
53,444 KB
testcase_02 AC 37 ms
53,148 KB
testcase_03 AC 37 ms
53,488 KB
testcase_04 AC 36 ms
53,492 KB
testcase_05 AC 36 ms
52,320 KB
testcase_06 AC 37 ms
52,380 KB
testcase_07 AC 37 ms
53,284 KB
testcase_08 AC 38 ms
52,448 KB
testcase_09 AC 48 ms
59,036 KB
testcase_10 AC 47 ms
60,212 KB
testcase_11 AC 37 ms
52,740 KB
testcase_12 AC 36 ms
53,368 KB
testcase_13 AC 37 ms
53,616 KB
testcase_14 AC 36 ms
53,228 KB
testcase_15 AC 36 ms
52,196 KB
testcase_16 AC 38 ms
53,176 KB
testcase_17 AC 42 ms
58,984 KB
testcase_18 AC 38 ms
53,500 KB
testcase_19 AC 36 ms
52,764 KB
testcase_20 AC 41 ms
58,636 KB
testcase_21 AC 37 ms
52,948 KB
testcase_22 AC 34 ms
52,968 KB
testcase_23 AC 37 ms
52,520 KB
testcase_24 AC 37 ms
52,344 KB
testcase_25 AC 37 ms
52,804 KB
testcase_26 AC 46 ms
59,676 KB
testcase_27 AC 36 ms
52,452 KB
testcase_28 AC 57 ms
59,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ls = []
for i in range(n):
	ls.append(input())
lz = []
for i in range(n):
	for j in range(n):
		if i != j:
			w = ls[i]+ls[j]
			if w not in lz:
				lz.append(w)
print(len(lz))
0