結果

問題 No.1905 PURE PHRASE
ユーザー ニックネームニックネーム
提出日時 2022-04-15 22:40:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,548 KB
最終ジャッジ日時 2024-06-07 03:36:40
合計ジャッジ時間 4,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
14,744 KB
testcase_01 AC 61 ms
14,984 KB
testcase_02 AC 60 ms
15,240 KB
testcase_03 AC 61 ms
15,236 KB
testcase_04 AC 62 ms
15,116 KB
testcase_05 AC 61 ms
15,108 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 63 ms
14,980 KB
testcase_09 AC 61 ms
15,236 KB
testcase_10 WA -
testcase_11 AC 62 ms
15,112 KB
testcase_12 AC 62 ms
15,104 KB
testcase_13 WA -
testcase_14 AC 62 ms
15,116 KB
testcase_15 AC 61 ms
14,844 KB
testcase_16 AC 62 ms
14,976 KB
testcase_17 WA -
testcase_18 AC 61 ms
14,976 KB
testcase_19 AC 62 ms
15,108 KB
testcase_20 AC 61 ms
15,068 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 62 ms
15,068 KB
testcase_25 AC 61 ms
15,100 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 61 ms
15,112 KB
testcase_29 AC 62 ms
14,848 KB
testcase_30 AC 61 ms
14,848 KB
testcase_31 WA -
testcase_32 AC 61 ms
15,104 KB
testcase_33 AC 62 ms
15,240 KB
testcase_34 AC 61 ms
14,948 KB
testcase_35 AC 61 ms
14,976 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 61 ms
14,944 KB
testcase_39 AC 61 ms
15,104 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
n = int(input())
a = list(map(int, input().split()))
l = sorted(a)[-50]
p = []
for i, v in enumerate(a):
    if v > l-500 and (not p or p[-1] < i-50): p.append(i)
d = [p[i+1]-p[i] for i in range(len(p)-1)]
m = len(d)//3
c = n/(sum(sorted(d)[m:2*m])/m)
h = ["C4", "D4", "E4", "F4", "G4", "A4", "B4"]
f = [261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5]
i = bisect_left(f, c)
if i > 5: i = 5
print(h[i] if abs(c-f[i]) < abs(c-f[i+1]) else h[i+1])
0