結果

問題 No.1905 PURE PHRASE
ユーザー tktk_snsntktk_snsn
提出日時 2022-04-15 22:37:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 45,240 KB
最終ジャッジ日時 2024-06-07 03:34:10
合計ジャッジ時間 24,393 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
44,596 KB
testcase_01 AC 534 ms
45,236 KB
testcase_02 AC 537 ms
44,344 KB
testcase_03 AC 536 ms
44,600 KB
testcase_04 AC 546 ms
44,480 KB
testcase_05 AC 542 ms
44,984 KB
testcase_06 AC 540 ms
44,732 KB
testcase_07 AC 538 ms
45,240 KB
testcase_08 AC 537 ms
44,856 KB
testcase_09 AC 534 ms
45,108 KB
testcase_10 AC 541 ms
44,604 KB
testcase_11 AC 541 ms
44,608 KB
testcase_12 AC 547 ms
44,960 KB
testcase_13 AC 542 ms
44,420 KB
testcase_14 AC 541 ms
44,608 KB
testcase_15 AC 544 ms
44,984 KB
testcase_16 AC 550 ms
44,732 KB
testcase_17 AC 547 ms
44,840 KB
testcase_18 AC 543 ms
44,988 KB
testcase_19 AC 547 ms
45,108 KB
testcase_20 AC 536 ms
44,472 KB
testcase_21 AC 534 ms
44,988 KB
testcase_22 AC 542 ms
44,472 KB
testcase_23 AC 537 ms
44,980 KB
testcase_24 AC 554 ms
44,856 KB
testcase_25 AC 544 ms
45,236 KB
testcase_26 AC 546 ms
45,240 KB
testcase_27 AC 543 ms
44,472 KB
testcase_28 AC 550 ms
44,988 KB
testcase_29 AC 543 ms
44,740 KB
testcase_30 AC 547 ms
44,856 KB
testcase_31 AC 556 ms
44,992 KB
testcase_32 AC 549 ms
44,600 KB
testcase_33 AC 545 ms
45,240 KB
testcase_34 AC 552 ms
44,596 KB
testcase_35 AC 548 ms
44,992 KB
testcase_36 AC 538 ms
44,864 KB
testcase_37 AC 539 ms
44,764 KB
testcase_38 AC 536 ms
44,860 KB
testcase_39 AC 537 ms
44,860 KB
testcase_40 AC 542 ms
44,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from numpy import fft

code = ["C4", "D4", "E4", "F4", "G4", "A4", "B4", ]
freq = [261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5, ]


def main(N, A):
    f = fft.rfftfreq(N, 1/N)
    C = fft.rfft(A, N)

    fpeak = f[np.argsort(np.abs(C))[-20:]]

    dif = [np.abs(fpeak - freq[i]).min() for i in range(7)]
    ans = -1
    p = 1e12
    for i, d in enumerate(dif):
        if p > d:
            ans = i
            p = d
    print(code[ans])


N = int(input())
A = np.array(input().split(), dtype=np.float64)
main(N, A)
0