結果

問題 No.2260 Adic Sum
ユーザー vwxyzvwxyz
提出日時 2023-04-07 23:00:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 70,964 KB
最終ジャッジ日時 2024-04-15 23:57:46
合計ジャッジ時間 8,452 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 33 ms
11,008 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 33 ms
10,880 KB
testcase_13 AC 34 ms
11,520 KB
testcase_14 AC 83 ms
19,092 KB
testcase_15 AC 108 ms
23,164 KB
testcase_16 AC 76 ms
18,064 KB
testcase_17 AC 129 ms
24,408 KB
testcase_18 AC 422 ms
20,952 KB
testcase_19 AC 455 ms
21,556 KB
testcase_20 AC 334 ms
21,372 KB
testcase_21 AC 342 ms
21,312 KB
testcase_22 AC 305 ms
21,156 KB
testcase_23 AC 269 ms
22,328 KB
testcase_24 AC 474 ms
23,920 KB
testcase_25 AC 173 ms
34,536 KB
testcase_26 AC 170 ms
34,448 KB
testcase_27 AC 178 ms
34,424 KB
testcase_28 AC 174 ms
34,228 KB
testcase_29 AC 176 ms
34,280 KB
testcase_30 AC 209 ms
20,868 KB
testcase_31 AC 771 ms
70,952 KB
testcase_32 AC 772 ms
70,964 KB
testcase_33 AC 173 ms
22,396 KB
testcase_34 AC 250 ms
22,396 KB
testcase_35 AC 635 ms
21,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,P=map(int,input().split())
def solve(A):
  if len(A)==1:
    return 0
  dct=defaultdict(list)
  for a in A:
    dct[a%P].append(a)
  ans=0
  for a,A in dct.items():
    le=len(A)
    ans+=solve([(aa-a)//P for aa in A])+le*(le-1)//2
  return ans
A=list(map(int,input().split()))
ans=solve(A)
print(ans)
0