結果

問題 No.2770 Coupon Optimization
ユーザー titiatitia
提出日時 2024-06-03 00:40:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 88,236 KB
最終ジャッジ日時 2024-06-03 00:41:30
合計ジャッジ時間 27,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 585 ms
79,244 KB
testcase_02 AC 570 ms
78,964 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 674 ms
79,996 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 868 ms
80,064 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,180 ms
81,856 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

for i in range(M):
    B[i]=100-B[i]

A.sort()
B.sort()

import numpy
k=1<<18
g=numpy.fft.fft(A,k)
h=numpy.fft.fft(B,k)

f=[g[i]*h[i] for i in range(k)]

ANS=numpy.fft.ifft(f)

for ans in ANS[:N]:
    print(int(numpy.round(numpy.real(ans/100))))
0