結果

問題 No.1905 PURE PHRASE
ユーザー H20H20
提出日時 2022-04-15 22:06:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 47,040 KB
最終ジャッジ日時 2024-06-07 03:12:39
合計ジャッジ時間 26,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 595 ms
46,040 KB
testcase_01 AC 585 ms
46,900 KB
testcase_02 AC 592 ms
46,556 KB
testcase_03 AC 590 ms
46,416 KB
testcase_04 AC 583 ms
46,792 KB
testcase_05 WA -
testcase_06 AC 592 ms
46,912 KB
testcase_07 AC 600 ms
46,248 KB
testcase_08 AC 597 ms
46,244 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 585 ms
46,932 KB
testcase_13 WA -
testcase_14 AC 593 ms
46,152 KB
testcase_15 WA -
testcase_16 AC 603 ms
46,720 KB
testcase_17 AC 590 ms
46,400 KB
testcase_18 WA -
testcase_19 AC 619 ms
46,540 KB
testcase_20 AC 591 ms
46,436 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 598 ms
46,268 KB
testcase_24 AC 587 ms
46,736 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 600 ms
46,824 KB
testcase_29 WA -
testcase_30 AC 591 ms
46,708 KB
testcase_31 AC 588 ms
46,516 KB
testcase_32 WA -
testcase_33 AC 590 ms
47,040 KB
testcase_34 AC 599 ms
46,884 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 603 ms
46,780 KB
testcase_38 AC 598 ms
46,356 KB
testcase_39 AC 596 ms
46,620 KB
testcase_40 AC 589 ms
46,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# 高速フーリエ変換(FFT)
F = np.fft.fft(A)
# 振幅スペクトルを計算
amplitude = np.abs(F)
F_amplitude = amplitude / N * 2
F_amplitude[0] = F_amplitude[0] / 2
v = 0
ans = 0
for i in range(len(F_amplitude)):
	if v<F_amplitude[i]:
		ans=i
		v=F_amplitude[i]
if 1569<=ans<=1571:
    print('C4')
elif 292<=ans<=295:
    print('D4')
elif 326<=ans<=328:
    print('E4')
elif 348<=ans<=350:
    print('F4')
elif 391<=ans<=395:
    print('G4')
elif 435<=ans<=437:
    print('A4')
else:
    print('B4')
0