結果

問題 No.2260 Adic Sum
ユーザー ニックネームニックネーム
提出日時 2023-04-07 21:30:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 201 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 817,844 KB
最終ジャッジ日時 2024-10-06 06:42:10
合計ジャッジ時間 2,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 34 ms
10,752 KB
testcase_12 AC 45 ms
11,264 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

x,p = map(int,input().split())
a = list(map(int,input().split()))
q = p; m = max(a); ans = 0
while q<m:
    r = [0]*q
    for v in a: r[v%q] += 1
    for v in r: ans += v*(v-1)//2
    q *= p
print(ans)
0