結果
問題 | No.398 ハーフパイプ(2) |
ユーザー | rlangevin |
提出日時 | 2023-11-02 12:46:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,272 bytes |
コンパイル時間 | 421 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 57,900 KB |
最終ジャッジ日時 | 2024-09-25 18:07:29 |
合計ジャッジ時間 | 6,783 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
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 | -- | - |
ソースコード
import numpy as np def convolve(f, g): fft_len = 1 while 2 * fft_len < len(f) + len(g) - 1: fft_len *= 2 fft_len *= 2 Ff = np.fft.rfft(f, fft_len) Fg = np.fft.rfft(g, fft_len) Fh = Ff * Fg h = np.fft.irfft(Fh, fft_len) h = np.rint(h).astype(np.int64) return h[:len(f) + len(g) - 1] a, b = input().split(".") X = int(a + b)//25 M = 100 ans = int(X % 4 == 0) for a in range(M + 1): for b in range(a, M + 1): if X + a + b > 600: continue dp = [0] * (M + 1) for i in range(a, b + 1): dp[i] = 1 temp = [0] * (6 * M + 1) temp[0] = 1 for _ in range(6): temp = convolve(temp, dp) ans += temp[X + a + b] dp[b] = 0 temp = [0] * (6 * M + 1) temp[0] = 1 for _ in range(6): temp = convolve(temp, dp) ans -= temp[X + a + b] dp[a] = 0 dp[b] = 1 temp = [0] * (6 * M + 1) temp[0] = 1 for _ in range(6): temp = convolve(temp, dp) ans -= temp[X + a + b] dp[b] = 0 temp = [0] * (6 * M + 1) temp[0] = 1 for _ in range(6): temp = convolve(temp, dp) ans += temp[X + a + b] print(ans)