結果

問題 No.2260 Adic Sum
ユーザー 👑 rin204rin204
提出日時 2024-04-27 15:17:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 179,020 KB
最終ジャッジ日時 2024-04-27 15:18:15
合計ジャッジ時間 6,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,516 KB
testcase_01 AC 33 ms
53,576 KB
testcase_02 AC 32 ms
53,152 KB
testcase_03 AC 33 ms
52,336 KB
testcase_04 AC 35 ms
53,132 KB
testcase_05 AC 32 ms
52,632 KB
testcase_06 AC 37 ms
52,568 KB
testcase_07 AC 33 ms
53,232 KB
testcase_08 AC 40 ms
61,064 KB
testcase_09 AC 39 ms
57,880 KB
testcase_10 AC 40 ms
60,968 KB
testcase_11 AC 34 ms
52,480 KB
testcase_12 AC 42 ms
62,388 KB
testcase_13 AC 42 ms
61,080 KB
testcase_14 AC 58 ms
75,656 KB
testcase_15 AC 69 ms
83,840 KB
testcase_16 AC 50 ms
73,736 KB
testcase_17 AC 71 ms
86,016 KB
testcase_18 AC 253 ms
146,708 KB
testcase_19 AC 287 ms
157,036 KB
testcase_20 AC 206 ms
156,452 KB
testcase_21 AC 205 ms
156,312 KB
testcase_22 AC 180 ms
143,996 KB
testcase_23 AC 147 ms
114,116 KB
testcase_24 AC 260 ms
155,260 KB
testcase_25 AC 78 ms
100,936 KB
testcase_26 AC 76 ms
97,724 KB
testcase_27 AC 81 ms
101,272 KB
testcase_28 AC 81 ms
100,984 KB
testcase_29 AC 86 ms
100,628 KB
testcase_30 AC 95 ms
94,412 KB
testcase_31 AC 229 ms
90,752 KB
testcase_32 AC 232 ms
90,784 KB
testcase_33 AC 92 ms
101,888 KB
testcase_34 AC 118 ms
108,948 KB
testcase_35 AC 376 ms
179,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, P = map(int, input().split())
A = list(map(int, input().split()))
x = P
ans = 0
while x < max(A):
    cnt = {}
    for a in A:
        b = a % x
        ans += cnt.get(b, 0)
        cnt[b] = cnt.get(b, 0) + 1
    x *= P

print(ans)
0