結果

問題 No.723 2つの数の和
ユーザー WangLiqinWangLiqin
提出日時 2020-06-03 23:39:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 231 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,272 KB
最終ジャッジ日時 2024-11-26 09:27:12
合計ジャッジ時間 16,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 476 ms
43,936 KB
testcase_01 AC 468 ms
44,196 KB
testcase_02 AC 464 ms
44,200 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 498 ms
44,312 KB
testcase_19 RE -
testcase_20 AC 482 ms
43,812 KB
testcase_21 AC 481 ms
44,184 KB
testcase_22 AC 472 ms
44,192 KB
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, X = map(int, input().split())
A = np.array(input().split(), np.int32)
F = np.bincount(A)

fft_len = 1 << 10
Ff = np.fft.fft(F, fft_len)
G = np.rint(np.fft.ifft(Ff * Ff, fft_len)).astype(np.int64)
print(G[X])
0