結果

問題 No.723 2つの数の和
ユーザー るこーそーるこーそー
提出日時 2024-08-23 22:47:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,025 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 88,836 KB
最終ジャッジ日時 2024-08-23 22:48:02
合計ジャッジ時間 3,596 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,536 KB
testcase_01 AC 40 ms
56,248 KB
testcase_02 AC 39 ms
56,528 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 61 ms
82,088 KB
testcase_19 RE -
testcase_20 AC 41 ms
56,552 KB
testcase_21 AC 40 ms
56,992 KB
testcase_22 AC 45 ms
56,280 KB
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import cmath
import math

def fft(x):
    N = len(x)
    if N <= 1:
        return x
    even = fft(x[0::2])
    odd = fft(x[1::2])
    T = [cmath.exp(-2j * cmath.pi * k / N) * odd[k] for k in range(N // 2)]
    return [even[k] + T[k] for k in range(N // 2)] + [even[k] - T[k] for k in range(N // 2)]

def ifft(x):
    N = len(x)
    if N <= 1:
        return x
    even = ifft(x[0::2])
    odd = ifft(x[1::2])
    T = [cmath.exp(2j * cmath.pi * k / N) * odd[k] for k in range(N // 2)]
    return [(even[k] + T[k]) / 2 for k in range(N // 2)] + [(even[k] - T[k]) / 2 for k in range(N // 2)]

def convolve(a, b):
    s = len(a) + len(b) - 1
    t = 1
    while t < s:
        t *= 2
    a = a + [0] * (t - len(a))
    b = b + [0] * (t - len(b))
    
    A = fft(a)
    B = fft(b)
    
    C = [A[i] * B[i] for i in range(t)]
    
    c = ifft(C)
    
    return [x.real for x in c[:s]]

n,x=map(int,input().split())
A=list(map(int,input().split()))

f=[0]*(10*5+1)
for a in A:
    f[a]+=1
    
f=convolve(f,f)
print(int(f[x]))
0