結果

問題 No.2260 Adic Sum
ユーザー sotanishysotanishy
提出日時 2023-03-26 12:54:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 516 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 200,296 KB
最終ジャッジ日時 2024-10-06 06:51:39
合計ジャッジ時間 6,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 45 ms
53,120 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 41 ms
53,248 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 53 ms
63,872 KB
testcase_09 AC 46 ms
60,800 KB
testcase_10 AC 50 ms
62,464 KB
testcase_11 AC 42 ms
53,760 KB
testcase_12 AC 54 ms
64,640 KB
testcase_13 AC 47 ms
62,208 KB
testcase_14 AC 64 ms
77,440 KB
testcase_15 AC 73 ms
84,608 KB
testcase_16 AC 58 ms
74,368 KB
testcase_17 AC 73 ms
87,040 KB
testcase_18 AC 331 ms
181,356 KB
testcase_19 AC 356 ms
192,864 KB
testcase_20 AC 254 ms
144,104 KB
testcase_21 AC 257 ms
142,716 KB
testcase_22 AC 229 ms
159,392 KB
testcase_23 AC 161 ms
114,680 KB
testcase_24 AC 353 ms
191,136 KB
testcase_25 AC 90 ms
101,632 KB
testcase_26 AC 88 ms
98,176 KB
testcase_27 AC 91 ms
102,016 KB
testcase_28 AC 91 ms
101,760 KB
testcase_29 AC 90 ms
101,912 KB
testcase_30 AC 98 ms
90,244 KB
testcase_31 AC 323 ms
146,556 KB
testcase_32 AC 332 ms
145,064 KB
testcase_33 AC 96 ms
92,456 KB
testcase_34 AC 171 ms
138,496 KB
testcase_35 AC 516 ms
200,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline

N, P = map(int, input().split())
A = list(map(int, input().split()))
p = P
ans = 0
while p <= 10**10:
    cnt = defaultdict(int)
    for x in A:
        r = x % p
        ans += cnt[r]
        cnt[r] += 1
    p *= P
print(ans)
0