結果
問題 |
No.2736 About half
|
ユーザー |
![]() |
提出日時 | 2024-04-30 11:54:22 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 193 bytes |
コンパイル時間 | 175 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-20 06:47:07 |
合計ジャッジ時間 | 1,491 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 15 |
ソースコード
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))