結果

問題 No.2517 Right Triangles on Circle
ユーザー titiatitia
提出日時 2023-10-27 21:56:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,376 KB
最終ジャッジ日時 2024-09-25 14:03:06
合計ジャッジ時間 6,464 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 WA -
testcase_02 AC 29 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,368 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 29 ms
10,496 KB
testcase_12 AC 29 ms
10,496 KB
testcase_13 AC 364 ms
40,668 KB
testcase_14 WA -
testcase_15 AC 389 ms
43,376 KB
testcase_16 AC 424 ms
43,196 KB
testcase_17 AC 296 ms
35,624 KB
testcase_18 AC 267 ms
35,212 KB
testcase_19 AC 250 ms
33,000 KB
testcase_20 AC 246 ms
33,948 KB
testcase_21 AC 362 ms
40,804 KB
testcase_22 WA -
testcase_23 AC 274 ms
33,732 KB
testcase_24 AC 128 ms
22,756 KB
testcase_25 WA -
testcase_26 AC 344 ms
38,880 KB
testcase_27 WA -
testcase_28 AC 71 ms
16,488 KB
testcase_29 AC 129 ms
23,372 KB
testcase_30 AC 88 ms
16,996 KB
testcase_31 AC 286 ms
35,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

A.sort()
S=set(A)
ANS=0

for a in A:
    if a+M//2 in S:
        ANS+=N-2

print(ANS)
0