結果
問題 | No.723 2つの数の和 |
ユーザー | WangLiqin |
提出日時 | 2020-06-03 23:39:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 231 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 47,392 KB |
最終ジャッジ日時 | 2024-05-04 19:30:05 |
合計ジャッジ時間 | 15,663 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 446 ms
44,568 KB |
testcase_01 | AC | 451 ms
44,068 KB |
testcase_02 | AC | 442 ms
43,944 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 | 466 ms
44,060 KB |
testcase_19 | RE | - |
testcase_20 | AC | 458 ms
44,316 KB |
testcase_21 | AC | 461 ms
44,448 KB |
testcase_22 | AC | 461 ms
44,316 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
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])