結果

問題 No.2517 Right Triangles on Circle
ユーザー tassei903tassei903
提出日時 2023-10-27 22:04:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 119,844 KB
最終ジャッジ日時 2024-09-25 14:10:01
合計ジャッジ時間 3,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,556 KB
testcase_01 AC 39 ms
52,200 KB
testcase_02 AC 39 ms
51,944 KB
testcase_03 AC 39 ms
53,136 KB
testcase_04 AC 39 ms
52,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 39 ms
52,456 KB
testcase_15 WA -
testcase_16 AC 121 ms
119,484 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
52,256 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 38 ms
52,764 KB
testcase_26 WA -
testcase_27 AC 38 ms
52,368 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n, m = na()

if m % 2:
    print(0)
    exit()
a = na()

j = 0
ans = 0
#print(a)
for i in range(n ):
    while j < n and a[j] - a[i] < m//2:
        j += 1
    if a[i] <= m//2 and j < n and a[j] - a[i] == m//2:
        ans += 1
        #print(i, j)
print(ans*(n-2))
0