結果

問題 No.1905 PURE PHRASE
ユーザー 👑 rin204rin204
提出日時 2022-04-15 21:52:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 70,656 KB
最終ジャッジ日時 2024-06-07 03:01:21
合計ジャッジ時間 3,704 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
69,888 KB
testcase_01 AC 54 ms
70,272 KB
testcase_02 AC 54 ms
70,272 KB
testcase_03 AC 54 ms
69,888 KB
testcase_04 AC 55 ms
70,144 KB
testcase_05 AC 54 ms
70,260 KB
testcase_06 AC 54 ms
70,016 KB
testcase_07 AC 52 ms
69,888 KB
testcase_08 AC 54 ms
70,400 KB
testcase_09 AC 53 ms
70,144 KB
testcase_10 AC 53 ms
69,888 KB
testcase_11 AC 54 ms
69,888 KB
testcase_12 AC 53 ms
70,016 KB
testcase_13 AC 53 ms
69,888 KB
testcase_14 AC 54 ms
70,016 KB
testcase_15 AC 53 ms
70,144 KB
testcase_16 AC 55 ms
70,528 KB
testcase_17 AC 55 ms
70,528 KB
testcase_18 AC 55 ms
70,272 KB
testcase_19 AC 54 ms
70,272 KB
testcase_20 AC 53 ms
69,760 KB
testcase_21 AC 54 ms
69,888 KB
testcase_22 AC 54 ms
70,400 KB
testcase_23 AC 54 ms
70,528 KB
testcase_24 AC 55 ms
70,228 KB
testcase_25 AC 55 ms
70,400 KB
testcase_26 AC 54 ms
70,400 KB
testcase_27 AC 54 ms
70,656 KB
testcase_28 AC 54 ms
70,272 KB
testcase_29 AC 55 ms
69,888 KB
testcase_30 AC 54 ms
70,272 KB
testcase_31 AC 55 ms
70,388 KB
testcase_32 AC 55 ms
70,272 KB
testcase_33 AC 54 ms
69,888 KB
testcase_34 AC 56 ms
70,084 KB
testcase_35 AC 56 ms
70,016 KB
testcase_36 AC 55 ms
70,528 KB
testcase_37 AC 56 ms
70,016 KB
testcase_38 AC 55 ms
69,888 KB
testcase_39 AC 54 ms
70,272 KB
testcase_40 AC 54 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

lst = [261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5]
mi = float("inf")
ans = -1

for l in lst:
    tmp = []
    x = 44100 / l
    for i, a in enumerate(A[:int(2 * x)]):
        tmp.append((i % x, a))
    tmp.sort()
    ma = -1 << 30
    for i in range(int(2 * x - 1)):
        ma = max(ma, abs(tmp[i + 1][1] - tmp[i][1]))
        
    if ma < mi:
        mi = ma
        ans = l




print(["C4", "D4", "E4", "F4", "G4", "A4", "B4"][lst.index(ans)])
0