結果

問題 No.1905 PURE PHRASE
ユーザー ニックネームニックネーム
提出日時 2022-04-16 00:48:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,328 KB
最終ジャッジ日時 2024-06-07 04:32:16
合計ジャッジ時間 7,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 147 ms
15,196 KB
testcase_03 AC 141 ms
15,200 KB
testcase_04 AC 155 ms
15,200 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 150 ms
15,064 KB
testcase_09 WA -
testcase_10 AC 144 ms
15,060 KB
testcase_11 AC 143 ms
15,192 KB
testcase_12 AC 155 ms
15,324 KB
testcase_13 AC 139 ms
15,072 KB
testcase_14 AC 147 ms
14,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 142 ms
15,324 KB
testcase_18 AC 150 ms
14,944 KB
testcase_19 AC 152 ms
14,944 KB
testcase_20 AC 142 ms
15,068 KB
testcase_21 AC 149 ms
15,060 KB
testcase_22 AC 151 ms
15,200 KB
testcase_23 AC 147 ms
15,196 KB
testcase_24 AC 148 ms
15,068 KB
testcase_25 AC 145 ms
14,812 KB
testcase_26 AC 143 ms
14,936 KB
testcase_27 AC 155 ms
15,068 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 142 ms
15,204 KB
testcase_32 AC 144 ms
15,200 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 150 ms
14,944 KB
testcase_36 AC 146 ms
15,196 KB
testcase_37 AC 145 ms
15,072 KB
testcase_38 WA -
testcase_39 AC 142 ms
15,068 KB
testcase_40 AC 144 ms
14,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
height = ["C4", "D4", "E4", "F4", "G4", "A4", "B4"]
freq = [261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5]
period = [int(n/v) for v in freq]
diff = [0]*7
for i, v in enumerate(period):
    for j in range(n-v): diff[i] += abs(a[i]-a[i+v])
print(height[diff.index(min(diff))])
0