結果

問題 No.1905 PURE PHRASE
ユーザー milanis48663220milanis48663220
提出日時 2022-04-15 21:48:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,124 KB
最終ジャッジ日時 2024-06-07 02:56:11
合計ジャッジ時間 24,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 544 ms
44,968 KB
testcase_01 AC 535 ms
45,740 KB
testcase_02 AC 535 ms
45,228 KB
testcase_03 AC 533 ms
45,620 KB
testcase_04 AC 535 ms
45,864 KB
testcase_05 AC 532 ms
45,740 KB
testcase_06 AC 555 ms
45,868 KB
testcase_07 AC 543 ms
45,868 KB
testcase_08 AC 549 ms
45,480 KB
testcase_09 AC 542 ms
45,872 KB
testcase_10 AC 551 ms
45,624 KB
testcase_11 AC 544 ms
45,740 KB
testcase_12 AC 544 ms
45,488 KB
testcase_13 AC 549 ms
45,612 KB
testcase_14 AC 533 ms
45,616 KB
testcase_15 AC 536 ms
45,608 KB
testcase_16 AC 540 ms
45,612 KB
testcase_17 AC 535 ms
45,612 KB
testcase_18 AC 537 ms
45,228 KB
testcase_19 AC 542 ms
45,616 KB
testcase_20 AC 534 ms
45,748 KB
testcase_21 AC 544 ms
45,992 KB
testcase_22 AC 553 ms
45,480 KB
testcase_23 AC 553 ms
45,748 KB
testcase_24 AC 548 ms
45,564 KB
testcase_25 AC 552 ms
45,608 KB
testcase_26 AC 553 ms
45,996 KB
testcase_27 AC 550 ms
45,484 KB
testcase_28 AC 544 ms
45,744 KB
testcase_29 AC 542 ms
45,744 KB
testcase_30 AC 547 ms
46,124 KB
testcase_31 AC 544 ms
45,872 KB
testcase_32 AC 543 ms
45,232 KB
testcase_33 AC 544 ms
45,740 KB
testcase_34 AC 542 ms
46,064 KB
testcase_35 AC 542 ms
45,388 KB
testcase_36 AC 550 ms
45,612 KB
testcase_37 AC 546 ms
45,992 KB
testcase_38 AC 548 ms
45,872 KB
testcase_39 AC 554 ms
45,224 KB
testcase_40 AC 552 ms
45,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import math

sound = {261.6: "C4", 294.3: "D4", 327.0: "E4", 348.8: "F4", 392.4: "G4", 436.0: "A4", 490.5: "B4"}

n = int(input())
a = np.array(list(map(int, input().split())))

ans = ""
min_norm = math.inf

for freq, kind in sound.items():
    cycle = int(n/freq)
    b = a[:-cycle]-a[cycle:]
    norm = np.linalg.norm(b)
    if norm < min_norm:
        min_norm = norm
        ans = kind

print(ans)
0