結果

問題 No.2517 Right Triangles on Circle
ユーザー ニックネームニックネーム
提出日時 2023-10-27 21:40:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 51,940 KB
最終ジャッジ日時 2024-09-25 13:45:16
合計ジャッジ時間 5,499 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 28 ms
10,496 KB
testcase_12 AC 28 ms
10,496 KB
testcase_13 AC 301 ms
48,288 KB
testcase_14 AC 202 ms
48,292 KB
testcase_15 AC 298 ms
51,940 KB
testcase_16 AC 325 ms
51,884 KB
testcase_17 AC 252 ms
43,016 KB
testcase_18 AC 237 ms
42,152 KB
testcase_19 AC 208 ms
39,552 KB
testcase_20 AC 209 ms
40,512 KB
testcase_21 AC 287 ms
48,824 KB
testcase_22 AC 83 ms
25,652 KB
testcase_23 AC 217 ms
43,036 KB
testcase_24 AC 112 ms
27,088 KB
testcase_25 AC 70 ms
20,336 KB
testcase_26 AC 259 ms
48,260 KB
testcase_27 AC 74 ms
21,244 KB
testcase_28 AC 64 ms
17,068 KB
testcase_29 AC 110 ms
26,784 KB
testcase_30 AC 76 ms
19,264 KB
testcase_31 AC 223 ms
45,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = set(map(int,input().split()))
x = 0
for v in a:
    if m%2==0 and v<=m//2 and v+m//2 in a: x += n-2
print(x)
0