結果

問題 No.2517 Right Triangles on Circle
ユーザー tassei903tassei903
提出日時 2023-10-27 21:56:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 624 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 129,556 KB
最終ジャッジ日時 2024-09-25 14:03:29
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,612 KB
testcase_01 AC 37 ms
52,628 KB
testcase_02 AC 37 ms
52,132 KB
testcase_03 AC 37 ms
52,728 KB
testcase_04 AC 38 ms
52,348 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 38 ms
51,840 KB
testcase_15 WA -
testcase_16 AC 130 ms
128,912 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
51,712 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
51,968 KB
testcase_26 WA -
testcase_27 AC 38 ms
51,712 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()
a = a + [m + x for x in a]

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