結果

問題 No.1905 PURE PHRASE
ユーザー 37zigen37zigen
提出日時 2022-04-15 22:13:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,972 KB
最終ジャッジ日時 2024-06-07 03:17:59
合計ジャッジ時間 7,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
14,696 KB
testcase_01 AC 139 ms
15,316 KB
testcase_02 AC 140 ms
15,316 KB
testcase_03 AC 144 ms
15,500 KB
testcase_04 AC 144 ms
15,236 KB
testcase_05 AC 143 ms
15,388 KB
testcase_06 AC 143 ms
15,392 KB
testcase_07 AC 141 ms
15,268 KB
testcase_08 AC 140 ms
15,092 KB
testcase_09 AC 141 ms
15,268 KB
testcase_10 AC 141 ms
15,208 KB
testcase_11 AC 140 ms
15,736 KB
testcase_12 AC 144 ms
15,848 KB
testcase_13 AC 142 ms
15,524 KB
testcase_14 AC 138 ms
15,624 KB
testcase_15 AC 139 ms
15,052 KB
testcase_16 AC 141 ms
15,060 KB
testcase_17 AC 140 ms
15,184 KB
testcase_18 AC 142 ms
15,560 KB
testcase_19 AC 144 ms
15,624 KB
testcase_20 AC 138 ms
15,208 KB
testcase_21 AC 140 ms
14,960 KB
testcase_22 AC 140 ms
15,840 KB
testcase_23 AC 142 ms
15,060 KB
testcase_24 AC 142 ms
15,344 KB
testcase_25 AC 143 ms
15,072 KB
testcase_26 AC 143 ms
14,956 KB
testcase_27 AC 140 ms
15,392 KB
testcase_28 AC 139 ms
15,620 KB
testcase_29 AC 142 ms
15,056 KB
testcase_30 AC 143 ms
15,064 KB
testcase_31 AC 139 ms
15,056 KB
testcase_32 AC 139 ms
15,932 KB
testcase_33 AC 145 ms
15,748 KB
testcase_34 AC 142 ms
15,376 KB
testcase_35 AC 143 ms
15,092 KB
testcase_36 AC 139 ms
15,972 KB
testcase_37 AC 144 ms
15,184 KB
testcase_38 AC 144 ms
15,216 KB
testcase_39 AC 139 ms
14,948 KB
testcase_40 AC 141 ms
14,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

freq = [261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5]
word = ["C4", "D4", "E4", "F4", "G4", "A4", "B4"]
N = int(input())
x = list(map(int, input().split()))

S = 10 ** 18
ans = -1
for i, f in enumerate(freq):
    d = round(N / f)
    s = sum([(x[i] - x[(i + d) % N]) ** 2 for i in range(N)])
    if s < S:
        S = s
        ans = i
print(word[ans])
0