結果
問題 | No.2517 Right Triangles on Circle |
ユーザー | H20 |
提出日時 | 2023-10-27 22:11:37 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 222 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 245,888 KB |
最終ジャッジ日時 | 2024-09-25 14:15:36 |
合計ジャッジ時間 | 5,621 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
58,624 KB |
testcase_01 | AC | 43 ms
53,248 KB |
testcase_02 | AC | 43 ms
53,404 KB |
testcase_03 | AC | 43 ms
53,472 KB |
testcase_04 | AC | 42 ms
53,248 KB |
testcase_05 | AC | 44 ms
54,268 KB |
testcase_06 | AC | 44 ms
54,400 KB |
testcase_07 | AC | 43 ms
53,888 KB |
testcase_08 | AC | 44 ms
53,760 KB |
testcase_09 | AC | 44 ms
54,400 KB |
testcase_10 | AC | 44 ms
53,760 KB |
testcase_11 | AC | 45 ms
57,344 KB |
testcase_12 | AC | 43 ms
53,888 KB |
testcase_13 | AC | 385 ms
245,888 KB |
testcase_14 | AC | 349 ms
245,712 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
import collections N,M = map(int, input().split()) A = list(map(int, input().split())) C = collections.Counter() for a in A: C[a%M]+=1 ans = 0 for i in range(M//2): ans+=C[i]*C[M/2+i]*(N-C[i]-C[M/2+i]) print(ans)