結果

問題 No.2260 Adic Sum
ユーザー qibqib
提出日時 2023-04-11 13:23:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 714 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 216,096 KB
最終ジャッジ日時 2024-10-07 05:58:48
合計ジャッジ時間 7,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 44 ms
53,888 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 AC 54 ms
64,384 KB
testcase_09 AC 51 ms
62,336 KB
testcase_10 AC 53 ms
63,744 KB
testcase_11 AC 43 ms
54,016 KB
testcase_12 AC 56 ms
65,408 KB
testcase_13 AC 52 ms
63,616 KB
testcase_14 AC 70 ms
79,872 KB
testcase_15 AC 80 ms
87,168 KB
testcase_16 AC 65 ms
76,416 KB
testcase_17 AC 82 ms
89,088 KB
testcase_18 AC 403 ms
166,088 KB
testcase_19 AC 421 ms
173,576 KB
testcase_20 AC 294 ms
141,516 KB
testcase_21 AC 313 ms
141,756 KB
testcase_22 AC 284 ms
144,656 KB
testcase_23 AC 188 ms
115,112 KB
testcase_24 AC 408 ms
160,528 KB
testcase_25 AC 102 ms
102,356 KB
testcase_26 AC 101 ms
101,888 KB
testcase_27 AC 102 ms
101,248 KB
testcase_28 AC 103 ms
102,016 KB
testcase_29 AC 102 ms
100,880 KB
testcase_30 AC 114 ms
91,008 KB
testcase_31 AC 366 ms
91,908 KB
testcase_32 AC 354 ms
91,924 KB
testcase_33 AC 112 ms
92,676 KB
testcase_34 AC 194 ms
138,920 KB
testcase_35 AC 714 ms
216,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

INF = 10 ** 9

n, p = map(int, input().split())
a = list(map(int, input().split()))

cnt = [defaultdict(int) for _ in range(31)]
ans = 0
for i in range(n):
  cur = 1
  for j in range(1, 31):
    cur *= p
    if cur > INF:
      break

    ans += cnt[j][a[i] % cur]
    cnt[j][a[i] % cur] += 1

print(ans)
0