結果

問題 No.2260 Adic Sum
ユーザー flygonflygon
提出日時 2023-04-07 21:34:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,374 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 281,752 KB
最終ジャッジ日時 2024-10-06 07:07:41
合計ジャッジ時間 24,906 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,108 KB
testcase_01 AC 44 ms
56,340 KB
testcase_02 AC 38 ms
54,860 KB
testcase_03 AC 43 ms
62,508 KB
testcase_04 AC 43 ms
62,564 KB
testcase_05 AC 44 ms
63,740 KB
testcase_06 AC 46 ms
63,048 KB
testcase_07 AC 46 ms
63,548 KB
testcase_08 AC 72 ms
76,568 KB
testcase_09 AC 60 ms
76,320 KB
testcase_10 AC 69 ms
76,816 KB
testcase_11 AC 57 ms
69,000 KB
testcase_12 AC 73 ms
77,060 KB
testcase_13 AC 87 ms
76,944 KB
testcase_14 AC 477 ms
126,456 KB
testcase_15 AC 719 ms
195,356 KB
testcase_16 AC 389 ms
117,608 KB
testcase_17 AC 798 ms
214,296 KB
testcase_18 AC 959 ms
212,488 KB
testcase_19 AC 1,068 ms
217,156 KB
testcase_20 AC 1,108 ms
243,848 KB
testcase_21 AC 1,120 ms
249,684 KB
testcase_22 AC 1,133 ms
267,432 KB
testcase_23 AC 1,274 ms
281,752 KB
testcase_24 AC 1,041 ms
213,152 KB
testcase_25 AC 1,315 ms
275,252 KB
testcase_26 AC 1,235 ms
271,528 KB
testcase_27 AC 1,374 ms
278,796 KB
testcase_28 AC 1,288 ms
272,896 KB
testcase_29 AC 1,328 ms
278,996 KB
testcase_30 AC 1,349 ms
275,300 KB
testcase_31 AC 825 ms
202,800 KB
testcase_32 AC 818 ms
204,228 KB
testcase_33 AC 1,150 ms
279,740 KB
testcase_34 AC 1,103 ms
275,364 KB
testcase_35 AC 882 ms
214,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

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


ans = 0
for i in range(1,60):
    d = defaultdict(int)
    now = pow(p,i)
    for i in range(n):
        ans += d[a[i] % now]
        d[a[i] % now] += 1
    
print(ans)
0