結果

問題 No.1905 PURE PHRASE
ユーザー kyskys
提出日時 2022-04-15 22:59:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 46,440 KB
最終ジャッジ日時 2024-12-25 02:10:01
合計ジャッジ時間 22,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 490 ms
45,668 KB
testcase_01 AC 490 ms
46,440 KB
testcase_02 AC 498 ms
45,668 KB
testcase_03 AC 471 ms
46,052 KB
testcase_04 AC 482 ms
45,924 KB
testcase_05 AC 483 ms
45,796 KB
testcase_06 AC 485 ms
46,180 KB
testcase_07 AC 493 ms
45,668 KB
testcase_08 AC 480 ms
45,412 KB
testcase_09 AC 506 ms
46,196 KB
testcase_10 AC 507 ms
45,920 KB
testcase_11 AC 498 ms
45,796 KB
testcase_12 AC 509 ms
45,800 KB
testcase_13 AC 498 ms
46,304 KB
testcase_14 AC 511 ms
46,176 KB
testcase_15 AC 483 ms
45,924 KB
testcase_16 AC 479 ms
46,180 KB
testcase_17 AC 492 ms
45,668 KB
testcase_18 AC 476 ms
46,180 KB
testcase_19 AC 482 ms
45,792 KB
testcase_20 AC 487 ms
45,664 KB
testcase_21 AC 473 ms
45,800 KB
testcase_22 AC 482 ms
45,668 KB
testcase_23 AC 474 ms
46,304 KB
testcase_24 AC 499 ms
45,800 KB
testcase_25 AC 486 ms
46,180 KB
testcase_26 AC 489 ms
46,180 KB
testcase_27 AC 485 ms
46,060 KB
testcase_28 AC 488 ms
45,924 KB
testcase_29 AC 493 ms
46,312 KB
testcase_30 AC 502 ms
45,928 KB
testcase_31 AC 476 ms
45,796 KB
testcase_32 AC 495 ms
46,056 KB
testcase_33 AC 481 ms
46,056 KB
testcase_34 AC 480 ms
46,052 KB
testcase_35 AC 473 ms
45,676 KB
testcase_36 AC 471 ms
45,796 KB
testcase_37 AC 473 ms
45,672 KB
testcase_38 AC 477 ms
45,796 KB
testcase_39 AC 473 ms
46,312 KB
testcase_40 AC 501 ms
45,924 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