結果

問題 No.1905 PURE PHRASE
ユーザー ThetaTheta
提出日時 2022-10-11 18:58:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,128 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 62,672 KB
最終ジャッジ日時 2024-06-25 13:44:34
合計ジャッジ時間 44,775 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,007 ms
61,652 KB
testcase_01 AC 994 ms
62,668 KB
testcase_02 AC 1,008 ms
62,164 KB
testcase_03 AC 1,014 ms
62,548 KB
testcase_04 AC 1,007 ms
62,292 KB
testcase_05 AC 1,018 ms
62,096 KB
testcase_06 AC 1,015 ms
62,288 KB
testcase_07 AC 1,014 ms
62,540 KB
testcase_08 AC 995 ms
62,032 KB
testcase_09 AC 1,002 ms
62,668 KB
testcase_10 AC 1,000 ms
62,544 KB
testcase_11 AC 1,004 ms
62,040 KB
testcase_12 AC 1,006 ms
62,548 KB
testcase_13 AC 1,010 ms
62,036 KB
testcase_14 AC 1,023 ms
62,544 KB
testcase_15 AC 1,032 ms
62,424 KB
testcase_16 AC 1,030 ms
61,904 KB
testcase_17 AC 1,016 ms
62,672 KB
testcase_18 AC 1,007 ms
62,160 KB
testcase_19 AC 998 ms
62,260 KB
testcase_20 AC 1,004 ms
62,412 KB
testcase_21 AC 1,012 ms
62,540 KB
testcase_22 AC 1,017 ms
62,284 KB
testcase_23 AC 1,017 ms
61,904 KB
testcase_24 AC 1,020 ms
62,416 KB
testcase_25 AC 1,012 ms
62,028 KB
testcase_26 AC 1,005 ms
62,556 KB
testcase_27 AC 1,042 ms
62,172 KB
testcase_28 AC 1,023 ms
62,032 KB
testcase_29 AC 1,005 ms
62,044 KB
testcase_30 AC 1,075 ms
62,032 KB
testcase_31 AC 1,017 ms
61,908 KB
testcase_32 AC 1,007 ms
62,028 KB
testcase_33 AC 1,016 ms
62,288 KB
testcase_34 AC 1,009 ms
62,544 KB
testcase_35 AC 1,018 ms
61,908 KB
testcase_36 AC 1,128 ms
62,036 KB
testcase_37 AC 1,002 ms
61,916 KB
testcase_38 AC 1,004 ms
62,668 KB
testcase_39 AC 1,005 ms
62,416 KB
testcase_40 AC 1,003 ms
62,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.fft import fft
import numpy as np


heltz = {
    "C4": 261.6,
    "D4": 294.3,
    "E4": 327.0,
    "F4": 348.8,
    "G4": 392.4,
    "A4": 436.0,
    "B4": 490.5
}


def main():
    _ = input()
    A = list(map(int, input().split()))
    A_fft = fft(A)
    A_fft_abs = np.abs(A_fft)
    A_fft_freq = np.fft.fftfreq(44100, d=1/44100)
    main_frequency = A_fft_freq[np.where(A_fft_abs > np.max(A_fft_abs)/10)]
    sound_errors = {}
    for sound_name, freq in heltz.items():
        relative_frequency = main_frequency / freq
        relative_frequency_rounded = np.round(relative_frequency)
        sound_errors[sound_name] = np.linalg.norm(
            relative_frequency-relative_frequency_rounded)

    print(min(sound_errors, key=lambda sound_name: sound_errors[sound_name]))


if __name__ == "__main__":
    main()
0