結果

問題 No.723 2つの数の和
ユーザー rkato5680rkato5680
提出日時 2021-02-12 16:15:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,234 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 61,248 KB
最終ジャッジ日時 2024-07-19 09:19:29
合計ジャッジ時間 18,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 627 ms
44,048 KB
testcase_01 AC 652 ms
44,436 KB
testcase_02 AC 645 ms
44,440 KB
testcase_03 AC 716 ms
60,380 KB
testcase_04 AC 683 ms
61,056 KB
testcase_05 AC 692 ms
59,876 KB
testcase_06 AC 657 ms
60,748 KB
testcase_07 AC 642 ms
57,472 KB
testcase_08 AC 631 ms
58,012 KB
testcase_09 AC 666 ms
61,248 KB
testcase_10 AC 618 ms
57,156 KB
testcase_11 AC 605 ms
56,092 KB
testcase_12 AC 632 ms
58,708 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 677 ms
44,176 KB
testcase_19 AC 669 ms
60,600 KB
testcase_20 AC 633 ms
44,432 KB
testcase_21 AC 626 ms
44,300 KB
testcase_22 AC 624 ms
44,556 KB
testcase_23 AC 673 ms
60,580 KB
testcase_24 AC 617 ms
56,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 一体版
import numpy as np
from numpy.fft import rfft,irfft

def add(A,B):
    if len(A)<len(B): A,B = B,A
    out = A[:]
    for i in range(-1,-len(B)-1,-1):
        out[i] += B[i]
    return out

def convolve(a1,a2):
    n = 2**(len(a1)+len(a2)+1).bit_length()
    b1,b2=np.zeros(n),np.zeros(n)
    b1[:len(a1)], b2[:len(a2)]= a1,a2
    return np.trim_zeros((irfft(rfft(b1)*rfft(b2))+0.5).astype(int), 'b')

def power(A, k):
    nzero = len(A)-len(np.trim_zeros(A,"f"))
    coef = [A[::-1]]
    out = [1]
    for i in range(k.bit_length()):
        coef.append(convolve(coef[-1], coef[-1]))
        if (k>>i)&1:
            out = convolve(out, coef[-2])
    return np.hstack([np.zeros(nzero*k,dtype=int),out[::-1]])

def div(A, B):
    Q = []
    for i in range(max(len(A)-len(B)+1, 0)):
        Q.append(A[i] /B[0])
        for j in range(len(B)):
            A[i+j] -= Q[-1]*B[j]
    R = []
    for i in range(len(A)):
        if A[i]: 
            R = A[i:]
            break
    if not Q: Q = [0]
    if not R: R = [0]
    return Q,R
  
N,X = map(int,input().split())
*A,=map(int,input().split())

B = np.zeros(10**5+5,dtype=int)

for i in range(N):
  B[A[i]] += 1
  
B = np.trim_zeros(B,"b")

C = convolve(B,B)

print(C[X])
0