結果

問題 No.1905 PURE PHRASE
ユーザー colognecologne
提出日時 2022-04-16 11:34:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 15,596 KB
最終ジャッジ日時 2024-06-07 12:37:44
合計ジャッジ時間 8,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
14,888 KB
testcase_01 AC 160 ms
15,256 KB
testcase_02 AC 160 ms
15,508 KB
testcase_03 AC 160 ms
15,252 KB
testcase_04 AC 160 ms
15,596 KB
testcase_05 AC 161 ms
15,464 KB
testcase_06 AC 160 ms
15,464 KB
testcase_07 AC 162 ms
15,512 KB
testcase_08 AC 162 ms
15,248 KB
testcase_09 AC 160 ms
15,436 KB
testcase_10 AC 161 ms
14,964 KB
testcase_11 AC 162 ms
15,380 KB
testcase_12 AC 161 ms
15,132 KB
testcase_13 AC 162 ms
15,464 KB
testcase_14 AC 161 ms
15,252 KB
testcase_15 AC 160 ms
15,232 KB
testcase_16 AC 164 ms
15,232 KB
testcase_17 AC 161 ms
15,248 KB
testcase_18 AC 161 ms
15,224 KB
testcase_19 AC 161 ms
15,248 KB
testcase_20 AC 158 ms
15,072 KB
testcase_21 AC 161 ms
15,124 KB
testcase_22 AC 161 ms
15,140 KB
testcase_23 AC 162 ms
15,380 KB
testcase_24 AC 162 ms
15,072 KB
testcase_25 AC 161 ms
15,104 KB
testcase_26 AC 160 ms
15,232 KB
testcase_27 AC 163 ms
15,596 KB
testcase_28 AC 161 ms
15,252 KB
testcase_29 AC 160 ms
15,104 KB
testcase_30 AC 161 ms
15,104 KB
testcase_31 AC 159 ms
15,248 KB
testcase_32 AC 160 ms
15,256 KB
testcase_33 AC 159 ms
15,244 KB
testcase_34 AC 160 ms
15,192 KB
testcase_35 AC 161 ms
15,156 KB
testcase_36 AC 163 ms
15,264 KB
testcase_37 AC 160 ms
15,248 KB
testcase_38 AC 161 ms
15,076 KB
testcase_39 AC 162 ms
15,360 KB
testcase_40 AC 161 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import cmath


def main():
    N = int(input())
    *A, = map(int, input().split())

    melody = [
        ("C4", 261.6),
        ("D4", 294.3),
        ("E4", 327.0),
        ("F4", 348.8),
        ("G4", 392.4),
        ("A4", 436.0),
        ("B4", 490.5),
    ]

    ans = 0
    ansv = 0

    for m, f in melody:
        angle = 2*math.pi*f/N
        s = 0
        for i in range(N):
            s += A[i] * cmath.exp(angle*i*1j)
        if ans < abs(s):
            ans = abs(s)
            ansv = m

    print(ansv)


if __name__ == '__main__':
    main()
0