結果

問題 No.1905 PURE PHRASE
ユーザー kyskys
提出日時 2022-04-15 22:59:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,692 KB
最終ジャッジ日時 2024-06-07 03:50:05
合計ジャッジ時間 26,455 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 584 ms
46,316 KB
testcase_01 AC 594 ms
46,316 KB
testcase_02 AC 598 ms
46,064 KB
testcase_03 AC 588 ms
46,176 KB
testcase_04 AC 596 ms
46,060 KB
testcase_05 AC 600 ms
46,692 KB
testcase_06 AC 607 ms
45,668 KB
testcase_07 AC 604 ms
46,184 KB
testcase_08 AC 593 ms
45,924 KB
testcase_09 AC 602 ms
45,640 KB
testcase_10 AC 597 ms
46,336 KB
testcase_11 AC 594 ms
46,436 KB
testcase_12 AC 584 ms
45,928 KB
testcase_13 AC 575 ms
45,664 KB
testcase_14 AC 632 ms
46,248 KB
testcase_15 AC 596 ms
45,932 KB
testcase_16 AC 598 ms
46,432 KB
testcase_17 AC 606 ms
45,972 KB
testcase_18 AC 600 ms
45,664 KB
testcase_19 AC 588 ms
46,152 KB
testcase_20 AC 577 ms
46,180 KB
testcase_21 AC 577 ms
46,040 KB
testcase_22 AC 581 ms
45,924 KB
testcase_23 AC 582 ms
46,188 KB
testcase_24 AC 585 ms
45,920 KB
testcase_25 AC 586 ms
46,304 KB
testcase_26 AC 584 ms
46,304 KB
testcase_27 AC 586 ms
46,060 KB
testcase_28 AC 592 ms
46,312 KB
testcase_29 AC 588 ms
45,792 KB
testcase_30 AC 596 ms
46,192 KB
testcase_31 AC 589 ms
46,176 KB
testcase_32 AC 593 ms
45,928 KB
testcase_33 AC 589 ms
46,376 KB
testcase_34 AC 581 ms
46,056 KB
testcase_35 AC 592 ms
45,672 KB
testcase_36 AC 551 ms
46,060 KB
testcase_37 AC 597 ms
46,184 KB
testcase_38 AC 586 ms
46,436 KB
testcase_39 AC 589 ms
45,796 KB
testcase_40 AC 590 ms
46,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def iinput(): return int(input())
def sinput(): return input().rstrip()
def i0input(): return int(input()) - 1
def linput(): return list(input().split())
def liinput(): return list(map(int, input().split()))
def miinput(): return map(int, input().split())
def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
def mi0input(): return map(lambda x: int(x) - 1, input().split())
INF = 10**20
MOD = 1000000007

import numpy as np

N = iinput()
A = liinput()

X = np.fft.fft(A)

X = list(map(abs, X))
res = 0
for i, x in enumerate(X[:500]):
    if x > res:
        res = x
        ans = i

K = [261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5]
KK = ['C4', 'D4', 'E4', 'F4', 'G4', 'A4', 'B4']

res = INF
for i in range(7):
    if abs(ans-K[i]) < res:
        res = abs(ans-K[i])
        a = i

print(KK[a])
0