結果

問題 No.2737 Compound Word
ユーザー shobonvipshobonvip
提出日時 2024-04-21 00:18:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 59,224 KB
最終ジャッジ日時 2024-10-12 22:37:29
合計ジャッジ時間 2,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,156 KB
testcase_01 AC 38 ms
52,768 KB
testcase_02 AC 41 ms
52,428 KB
testcase_03 AC 39 ms
52,452 KB
testcase_04 AC 37 ms
52,664 KB
testcase_05 AC 37 ms
52,576 KB
testcase_06 AC 37 ms
51,648 KB
testcase_07 AC 38 ms
52,640 KB
testcase_08 AC 39 ms
52,008 KB
testcase_09 AC 41 ms
59,224 KB
testcase_10 AC 42 ms
58,652 KB
testcase_11 AC 37 ms
51,992 KB
testcase_12 AC 38 ms
51,948 KB
testcase_13 AC 38 ms
53,324 KB
testcase_14 AC 38 ms
52,448 KB
testcase_15 AC 37 ms
51,648 KB
testcase_16 AC 39 ms
52,076 KB
testcase_17 AC 43 ms
58,868 KB
testcase_18 AC 39 ms
52,108 KB
testcase_19 AC 38 ms
51,944 KB
testcase_20 AC 43 ms
58,168 KB
testcase_21 AC 38 ms
52,012 KB
testcase_22 AC 38 ms
52,880 KB
testcase_23 AC 37 ms
51,996 KB
testcase_24 AC 38 ms
52,760 KB
testcase_25 AC 39 ms
53,360 KB
testcase_26 AC 43 ms
58,488 KB
testcase_27 AC 38 ms
52,384 KB
testcase_28 AC 41 ms
58,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=[input() for i in range(n)]
g = set()
for i in range(n):
	for j in range(n):
		if i == j: continue
		g.add(s[i]+s[j])
print(len(g))
0