結果

問題 No.2260 Adic Sum
ユーザー pluto77pluto77
提出日時 2023-04-26 16:13:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 204 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,296 KB
最終ジャッジ日時 2024-11-15 23:19:40
合計ジャッジ時間 18,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 34 ms
10,880 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 34 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 35 ms
11,008 KB
testcase_13 AC 33 ms
11,008 KB
testcase_14 AC 79 ms
16,336 KB
testcase_15 AC 99 ms
18,972 KB
testcase_16 AC 70 ms
16,556 KB
testcase_17 AC 110 ms
20,532 KB
testcase_18 AC 1,305 ms
28,056 KB
testcase_19 AC 1,425 ms
28,100 KB
testcase_20 AC 916 ms
28,108 KB
testcase_21 AC 937 ms
28,148 KB
testcase_22 AC 782 ms
28,004 KB
testcase_23 AC 587 ms
28,004 KB
testcase_24 AC 1,380 ms
28,096 KB
testcase_25 AC 156 ms
25,936 KB
testcase_26 AC 150 ms
25,920 KB
testcase_27 AC 157 ms
26,184 KB
testcase_28 AC 152 ms
25,900 KB
testcase_29 AC 152 ms
26,008 KB
testcase_30 AC 209 ms
22,028 KB
testcase_31 AC 1,866 ms
21,960 KB
testcase_32 AC 1,857 ms
22,996 KB
testcase_33 AC 213 ms
26,752 KB
testcase_34 AC 615 ms
28,164 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
n,p=map(int,input().split())
a=list(map(int,input().split()))
res=0
q=p
while q<10**9+3:
 d=defaultdict(int)
 for i in range(n):
  res+=d[a[i]%q]
  d[a[i]%q]+=1
 q*=p
print(res)
0