結果

問題 No.2517 Right Triangles on Circle
ユーザー vwxyzvwxyz
提出日時 2023-12-08 03:57:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 51,936 KB
最終ジャッジ日時 2024-09-27 02:38:08
合計ジャッジ時間 6,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,368 KB
testcase_03 AC 31 ms
10,368 KB
testcase_04 AC 32 ms
10,368 KB
testcase_05 AC 32 ms
10,496 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 30 ms
10,368 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 30 ms
10,368 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 351 ms
46,368 KB
testcase_14 AC 245 ms
46,372 KB
testcase_15 AC 334 ms
51,936 KB
testcase_16 AC 365 ms
51,756 KB
testcase_17 AC 278 ms
41,820 KB
testcase_18 AC 269 ms
41,048 KB
testcase_19 AC 243 ms
39,368 KB
testcase_20 AC 238 ms
40,324 KB
testcase_21 AC 330 ms
48,688 KB
testcase_22 AC 94 ms
25,316 KB
testcase_23 AC 246 ms
43,004 KB
testcase_24 AC 126 ms
26,852 KB
testcase_25 AC 74 ms
20,328 KB
testcase_26 AC 283 ms
48,564 KB
testcase_27 AC 80 ms
21,108 KB
testcase_28 AC 68 ms
16,940 KB
testcase_29 AC 119 ms
26,764 KB
testcase_30 AC 79 ms
19,132 KB
testcase_31 AC 246 ms
45,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,M=map(int,readline().split())
A=set(map(int,readline().split()))
ans=0
for a in A:
    if M%2==0 and a<=M//2 and a+M//2 in A:
        ans+=N-2
print(ans)
0