結果

問題 No.1905 PURE PHRASE
ユーザー H20H20
提出日時 2022-04-15 22:43:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 624 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 47,560 KB
最終ジャッジ日時 2024-06-07 03:38:46
合計ジャッジ時間 24,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
46,916 KB
testcase_01 AC 510 ms
47,560 KB
testcase_02 AC 510 ms
47,044 KB
testcase_03 AC 513 ms
47,176 KB
testcase_04 AC 511 ms
46,792 KB
testcase_05 AC 511 ms
47,172 KB
testcase_06 AC 521 ms
47,300 KB
testcase_07 WA -
testcase_08 AC 510 ms
47,172 KB
testcase_09 AC 507 ms
47,304 KB
testcase_10 WA -
testcase_11 AC 501 ms
47,044 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 507 ms
46,912 KB
testcase_16 WA -
testcase_17 AC 518 ms
47,296 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 509 ms
46,920 KB
testcase_22 WA -
testcase_23 AC 511 ms
47,260 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 510 ms
46,672 KB
testcase_28 WA -
testcase_29 AC 503 ms
46,528 KB
testcase_30 WA -
testcase_31 AC 509 ms
47,172 KB
testcase_32 AC 510 ms
47,424 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 523 ms
46,924 KB
testcase_36 WA -
testcase_37 AC 504 ms
47,432 KB
testcase_38 WA -
testcase_39 AC 512 ms
46,912 KB
testcase_40 AC 518 ms
46,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N = int(input())
A = list(map(int, input().split())) 
F = np.fft.fft(A)
# 振幅スペクトルを計算
amplitude = np.abs(F)
F_amplitude = amplitude / N * 2
F_amplitude[0] = F_amplitude[0] / 2
v = 0
hz = 0
for i in range(len(F_amplitude)):
	if v<F_amplitude[i]:
		hz=i
		v=F_amplitude[i]
L = ['C4','D4','E4','F4','G4','A4','B4']
HZ = [261.6,294.3,327.0,348.8,392.4,436.0,490.5]
ans = 0
v = 1000
for i in range(7):
    if v>min(hz/HZ[i]-int(hz/HZ[i]),abs(1-hz/HZ[i]+int(hz/HZ[i])))*HZ[i]/HZ[0]:
        v = min(hz/HZ[i]-int(hz/HZ[i]),abs(1-hz/HZ[i]+int(hz/HZ[i])))*HZ[i]/HZ[0]
        ans=i
print(L[ans])
0