結果
問題 | No.1597 Matrix Sort |
ユーザー | tktk_snsn |
提出日時 | 2021-07-09 22:09:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 445 bytes |
コンパイル時間 | 346 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 820,760 KB |
最終ジャッジ日時 | 2024-07-01 16:35:49 |
合計ジャッジ時間 | 6,078 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 525 ms
43,948 KB |
testcase_01 | AC | 520 ms
44,204 KB |
testcase_02 | AC | 527 ms
44,332 KB |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
import numpy as np N, K, P = map(int, input().split()) A = np.array(input().split(), dtype=np.int32) % P B = np.array(input().split(), dtype=np.int32) % P Fa = np.bincount(A) Fb = np.bincount(B) sz = 2 * P fft_len = 1 << (sz - 1).bit_length() Ca = np.fft.rfft(Fa, fft_len) Cb = np.fft.rfft(Fb, fft_len) G = np.fft.irfft(Ca * Cb, fft_len)[:sz] G = np.rint(G).astype(np.int64) G = (G[:P] + G[P:]).cumsum() ans = np.searchsorted(G, K) print(ans)