結果

問題 No.1905 PURE PHRASE
ユーザー SumitacchanSumitacchan
提出日時 2022-02-11 18:12:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,780 KB
最終ジャッジ日時 2024-06-27 13:00:49
合計ジャッジ時間 23,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
46,136 KB
testcase_01 AC 526 ms
46,532 KB
testcase_02 AC 526 ms
45,632 KB
testcase_03 AC 524 ms
45,504 KB
testcase_04 AC 524 ms
46,136 KB
testcase_05 AC 531 ms
45,376 KB
testcase_06 AC 531 ms
45,512 KB
testcase_07 AC 528 ms
46,136 KB
testcase_08 AC 527 ms
45,760 KB
testcase_09 AC 525 ms
45,376 KB
testcase_10 AC 527 ms
45,384 KB
testcase_11 AC 526 ms
45,888 KB
testcase_12 AC 529 ms
46,144 KB
testcase_13 AC 526 ms
46,136 KB
testcase_14 AC 529 ms
46,008 KB
testcase_15 AC 530 ms
46,140 KB
testcase_16 AC 524 ms
45,372 KB
testcase_17 AC 532 ms
45,792 KB
testcase_18 AC 529 ms
46,144 KB
testcase_19 AC 525 ms
46,528 KB
testcase_20 AC 529 ms
46,400 KB
testcase_21 AC 523 ms
46,140 KB
testcase_22 AC 527 ms
45,380 KB
testcase_23 AC 526 ms
45,888 KB
testcase_24 AC 530 ms
45,900 KB
testcase_25 AC 533 ms
46,012 KB
testcase_26 AC 528 ms
46,140 KB
testcase_27 AC 530 ms
45,368 KB
testcase_28 AC 546 ms
45,756 KB
testcase_29 AC 529 ms
46,140 KB
testcase_30 AC 535 ms
45,760 KB
testcase_31 AC 524 ms
45,624 KB
testcase_32 AC 529 ms
46,272 KB
testcase_33 AC 526 ms
45,496 KB
testcase_34 AC 526 ms
46,140 KB
testcase_35 AC 524 ms
46,780 KB
testcase_36 AC 530 ms
46,136 KB
testcase_37 AC 526 ms
46,024 KB
testcase_38 AC 529 ms
46,088 KB
testcase_39 AC 527 ms
46,144 KB
testcase_40 AC 523 ms
46,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import numpy as np

N = int(input())
A = list(map(float, input().split()))
A = np.array(A)
F = np.abs(np.fft.fft(A))

candidate = { 'C4': 261.6, 'D4': 294.3, 'E4': 327.0, 'F4': 348.8, 'G4': 392.4, 'A4': 436.0, 'B4': 490.5  }
max_val = -1
ans = None
for k, f in candidate.items():
    val = F[int(np.round(f * 1.0))]
    if val > max_val:
        max_val = val
        ans = k

for k, f in candidate.items():
    if k != ans:
        val = F[int(np.round(f * 1.0))]
        assert(val < max_val * 0.1)

print(ans)
0