結果

問題 No.1905 PURE PHRASE
ユーザー dn6049949dn6049949
提出日時 2022-04-15 22:00:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 517 ms / 2,000 ms
コード長 1,048 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,500 KB
最終ジャッジ日時 2024-06-07 03:07:53
合計ジャッジ時間 22,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 507 ms
46,836 KB
testcase_01 AC 502 ms
46,976 KB
testcase_02 AC 505 ms
46,972 KB
testcase_03 AC 512 ms
47,084 KB
testcase_04 AC 510 ms
46,852 KB
testcase_05 AC 507 ms
47,308 KB
testcase_06 AC 493 ms
47,488 KB
testcase_07 AC 508 ms
47,188 KB
testcase_08 AC 496 ms
46,976 KB
testcase_09 AC 499 ms
46,984 KB
testcase_10 AC 507 ms
46,976 KB
testcase_11 AC 500 ms
47,064 KB
testcase_12 AC 488 ms
47,256 KB
testcase_13 AC 495 ms
47,096 KB
testcase_14 AC 501 ms
46,852 KB
testcase_15 AC 508 ms
47,364 KB
testcase_16 AC 502 ms
47,280 KB
testcase_17 AC 500 ms
46,796 KB
testcase_18 AC 503 ms
47,124 KB
testcase_19 AC 496 ms
47,084 KB
testcase_20 AC 504 ms
47,304 KB
testcase_21 AC 485 ms
46,804 KB
testcase_22 AC 501 ms
47,492 KB
testcase_23 AC 492 ms
47,236 KB
testcase_24 AC 500 ms
47,428 KB
testcase_25 AC 490 ms
46,980 KB
testcase_26 AC 498 ms
46,852 KB
testcase_27 AC 493 ms
47,112 KB
testcase_28 AC 497 ms
47,500 KB
testcase_29 AC 513 ms
47,068 KB
testcase_30 AC 510 ms
46,884 KB
testcase_31 AC 509 ms
46,924 KB
testcase_32 AC 508 ms
46,880 KB
testcase_33 AC 517 ms
47,084 KB
testcase_34 AC 503 ms
47,232 KB
testcase_35 AC 491 ms
47,036 KB
testcase_36 AC 505 ms
47,084 KB
testcase_37 AC 492 ms
46,048 KB
testcase_38 AC 500 ms
47,492 KB
testcase_39 AC 494 ms
46,768 KB
testcase_40 AC 517 ms
47,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!usr/bin/env python3
from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
import numpy as np
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def I(): return int(sys.stdin.readline())
def IR(n):
    return [I() for _ in range(n)]
def LIR(n):
    return [LI() for _ in range(n)]

sys.setrecursionlimit(1000000)
mod = 1000000007


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


def main():
    n = I()
    a = np.array(LI())
    han = np.hanning(n)

    F = np.fft.fft(a*han)
    freq = np.fft.fftfreq(n, d=1)

    acf = np.fft.ifft(np.abs(F)**2).real

    max_ = 0
    argmax = None
    for index,f in enumerate(hz):
        i = round(n/f)
        s = 0
        for j in range(i-3,i+4):
            s = max(s,abs(acf[j]))
        if max_ < s:
            max_ = s
            argmax = index
    print(ch[argmax])

    return


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