結果
| 問題 | No.2517 Right Triangles on Circle |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2023-10-27 21:56:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 188 bytes |
| コンパイル時間 | 255 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 43,376 KB |
| 最終ジャッジ日時 | 2024-09-25 14:03:06 |
| 合計ジャッジ時間 | 6,464 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 24 WA * 5 |
ソースコード
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)
titia