結果

問題 No.1905 PURE PHRASE
ユーザー ikomaikoma
提出日時 2022-04-15 22:34:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 659 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,052 KB
最終ジャッジ日時 2024-12-25 01:34:33
合計ジャッジ時間 24,298 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
45,796 KB
testcase_01 AC 524 ms
46,740 KB
testcase_02 AC 523 ms
46,464 KB
testcase_03 AC 523 ms
46,308 KB
testcase_04 AC 508 ms
46,492 KB
testcase_05 AC 521 ms
46,428 KB
testcase_06 AC 539 ms
46,184 KB
testcase_07 AC 524 ms
46,616 KB
testcase_08 AC 527 ms
46,200 KB
testcase_09 AC 523 ms
46,892 KB
testcase_10 AC 508 ms
46,060 KB
testcase_11 AC 651 ms
46,736 KB
testcase_12 AC 659 ms
46,776 KB
testcase_13 AC 509 ms
46,548 KB
testcase_14 AC 513 ms
46,728 KB
testcase_15 AC 515 ms
45,984 KB
testcase_16 AC 521 ms
46,964 KB
testcase_17 AC 528 ms
46,500 KB
testcase_18 AC 511 ms
46,920 KB
testcase_19 AC 520 ms
45,832 KB
testcase_20 AC 506 ms
46,592 KB
testcase_21 AC 506 ms
45,944 KB
testcase_22 AC 509 ms
46,760 KB
testcase_23 AC 528 ms
46,644 KB
testcase_24 AC 509 ms
48,052 KB
testcase_25 AC 521 ms
45,792 KB
testcase_26 AC 500 ms
46,144 KB
testcase_27 AC 504 ms
46,352 KB
testcase_28 AC 521 ms
47,032 KB
testcase_29 AC 517 ms
45,856 KB
testcase_30 AC 512 ms
46,288 KB
testcase_31 AC 506 ms
46,064 KB
testcase_32 AC 510 ms
47,424 KB
testcase_33 AC 504 ms
47,144 KB
testcase_34 AC 510 ms
47,168 KB
testcase_35 AC 524 ms
46,420 KB
testcase_36 AC 516 ms
46,892 KB
testcase_37 AC 511 ms
46,756 KB
testcase_38 AC 518 ms
47,792 KB
testcase_39 AC 516 ms
46,976 KB
testcase_40 AC 516 ms
46,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
import numpy as np

fs=44100
fft = np.fft.fft(A)

kouho = [261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5]
takasa = ["C4", "D4", "E4", "F4", "G4", "A4", "B4"]
gmax=0
idx=0
for i,k in enumerate(kouho):
    g = abs(fft[round(k)])
    if gmax<g:
        gmax=g
        idx=i
print(takasa[idx])
0