結果

問題 No.2517 Right Triangles on Circle
ユーザー yu_w(ゆ)yu_w(ゆ)
提出日時 2023-10-27 21:41:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 1,116 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 168,792 KB
最終ジャッジ日時 2024-09-25 13:46:24
合計ジャッジ時間 4,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,304 KB
testcase_01 AC 39 ms
52,296 KB
testcase_02 AC 38 ms
52,544 KB
testcase_03 AC 38 ms
52,732 KB
testcase_04 AC 38 ms
52,836 KB
testcase_05 AC 37 ms
52,556 KB
testcase_06 AC 37 ms
52,156 KB
testcase_07 AC 38 ms
52,516 KB
testcase_08 AC 38 ms
52,644 KB
testcase_09 AC 37 ms
53,256 KB
testcase_10 AC 38 ms
52,548 KB
testcase_11 AC 37 ms
52,420 KB
testcase_12 AC 38 ms
52,464 KB
testcase_13 AC 186 ms
159,260 KB
testcase_14 AC 163 ms
159,240 KB
testcase_15 AC 187 ms
168,792 KB
testcase_16 AC 195 ms
168,552 KB
testcase_17 AC 155 ms
117,320 KB
testcase_18 AC 145 ms
113,240 KB
testcase_19 AC 137 ms
138,208 KB
testcase_20 AC 143 ms
138,424 KB
testcase_21 AC 190 ms
163,840 KB
testcase_22 AC 74 ms
94,548 KB
testcase_23 AC 156 ms
136,276 KB
testcase_24 AC 93 ms
102,536 KB
testcase_25 AC 69 ms
87,264 KB
testcase_26 AC 167 ms
147,320 KB
testcase_27 AC 70 ms
90,396 KB
testcase_28 AC 66 ms
79,036 KB
testcase_29 AC 86 ms
101,772 KB
testcase_30 AC 72 ms
87,216 KB
testcase_31 AC 154 ms
136,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))

d=dict()
for i in range(N):
    if A[i] in d.keys():
        d[A[i]]+=1
    else:
        d[A[i]]=1
    
if M%2!=0:
    print(0)
    exit()

ans=0
for i in d.keys():
    if i>=M//2+1:
        continue
    j=i+M//2
    if j in d.keys():
        ans+=d[i]*d[j]*(N-d[i]-d[j])
    
print(ans)
0