結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 550 ms
45,792 KB
testcase_01 AC 546 ms
47,008 KB
testcase_02 AC 544 ms
46,208 KB
testcase_03 AC 542 ms
46,580 KB
testcase_04 AC 551 ms
46,484 KB
testcase_05 AC 539 ms
46,040 KB
testcase_06 AC 541 ms
46,184 KB
testcase_07 AC 548 ms
46,620 KB
testcase_08 AC 551 ms
46,536 KB
testcase_09 AC 546 ms
46,764 KB
testcase_10 AC 549 ms
46,576 KB
testcase_11 AC 549 ms
46,236 KB
testcase_12 AC 538 ms
46,768 KB
testcase_13 AC 544 ms
46,556 KB
testcase_14 AC 548 ms
46,648 KB
testcase_15 AC 542 ms
45,976 KB
testcase_16 AC 535 ms
47,100 KB
testcase_17 AC 542 ms
47,144 KB
testcase_18 AC 545 ms
46,796 KB
testcase_19 AC 539 ms
46,340 KB
testcase_20 AC 537 ms
46,252 KB
testcase_21 AC 540 ms
46,348 KB
testcase_22 AC 535 ms
46,760 KB
testcase_23 AC 539 ms
46,584 KB
testcase_24 AC 538 ms
47,664 KB
testcase_25 AC 537 ms
46,404 KB
testcase_26 AC 542 ms
46,716 KB
testcase_27 AC 538 ms
46,852 KB
testcase_28 AC 544 ms
47,236 KB
testcase_29 AC 550 ms
45,976 KB
testcase_30 AC 546 ms
45,904 KB
testcase_31 AC 536 ms
46,312 KB
testcase_32 AC 536 ms
47,252 KB
testcase_33 AC 538 ms
47,288 KB
testcase_34 AC 541 ms
47,296 KB
testcase_35 AC 545 ms
46,536 KB
testcase_36 AC 542 ms
46,912 KB
testcase_37 AC 540 ms
46,620 KB
testcase_38 AC 540 ms
48,288 KB
testcase_39 AC 543 ms
47,116 KB
testcase_40 AC 537 ms
46,752 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