結果

問題 No.2517 Right Triangles on Circle
ユーザー yu_w(ゆ)yu_w(ゆ)
提出日時 2023-10-27 21:34:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 270 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 848,572 KB
最終ジャッジ日時 2024-09-25 13:39:30
合計ジャッジ時間 5,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,000 KB
testcase_01 AC 39 ms
51,828 KB
testcase_02 AC 37 ms
52,600 KB
testcase_03 AC 37 ms
52,364 KB
testcase_04 AC 38 ms
53,248 KB
testcase_05 AC 37 ms
52,752 KB
testcase_06 AC 36 ms
53,912 KB
testcase_07 AC 36 ms
52,756 KB
testcase_08 AC 37 ms
52,252 KB
testcase_09 AC 37 ms
52,760 KB
testcase_10 AC 38 ms
52,672 KB
testcase_11 AC 38 ms
53,236 KB
testcase_12 AC 38 ms
52,200 KB
testcase_13 AC 119 ms
112,348 KB
testcase_14 AC 116 ms
112,652 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 116 ms
127,908 KB
testcase_18 AC 115 ms
124,752 KB
testcase_19 AC 97 ms
116,156 KB
testcase_20 AC 103 ms
120,616 KB
testcase_21 AC 143 ms
137,092 KB
testcase_22 RE -
testcase_23 AC 613 ms
464,360 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 MLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

flag=[0 for i in range(M+1)]
for i in range(N):
    flag[A[i]]+=1
    
if M%2!=0:
    print(0)
    exit()

ans=0
for i in range(1,M//2+1):
    j=i+M//2
    ans+=flag[i]*flag[j]*(N-flag[i]-flag[j])
print(ans)
0