結果

問題 No.1905 PURE PHRASE
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-04-15 23:33:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 873 bytes
コンパイル時間 1,652 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 99,348 KB
最終ジャッジ日時 2024-06-07 04:04:29
合計ジャッジ時間 13,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
99,024 KB
testcase_01 AC 268 ms
98,940 KB
testcase_02 AC 272 ms
99,196 KB
testcase_03 AC 270 ms
98,944 KB
testcase_04 AC 269 ms
99,064 KB
testcase_05 AC 272 ms
99,284 KB
testcase_06 AC 271 ms
99,284 KB
testcase_07 AC 273 ms
98,692 KB
testcase_08 AC 270 ms
98,944 KB
testcase_09 AC 269 ms
98,940 KB
testcase_10 AC 273 ms
99,164 KB
testcase_11 AC 270 ms
99,196 KB
testcase_12 AC 275 ms
99,280 KB
testcase_13 AC 272 ms
99,076 KB
testcase_14 AC 271 ms
98,948 KB
testcase_15 AC 270 ms
98,920 KB
testcase_16 AC 272 ms
98,696 KB
testcase_17 AC 275 ms
98,872 KB
testcase_18 AC 268 ms
98,948 KB
testcase_19 AC 271 ms
99,176 KB
testcase_20 AC 281 ms
98,672 KB
testcase_21 AC 269 ms
98,800 KB
testcase_22 AC 271 ms
98,948 KB
testcase_23 AC 275 ms
98,716 KB
testcase_24 AC 268 ms
98,932 KB
testcase_25 AC 268 ms
99,168 KB
testcase_26 AC 268 ms
98,928 KB
testcase_27 AC 272 ms
99,348 KB
testcase_28 AC 267 ms
98,956 KB
testcase_29 AC 271 ms
99,052 KB
testcase_30 AC 272 ms
99,052 KB
testcase_31 AC 267 ms
98,952 KB
testcase_32 AC 267 ms
99,080 KB
testcase_33 AC 268 ms
99,208 KB
testcase_34 AC 268 ms
99,184 KB
testcase_35 AC 267 ms
98,748 KB
testcase_36 AC 269 ms
98,692 KB
testcase_37 AC 268 ms
98,952 KB
testcase_38 AC 268 ms
98,800 KB
testcase_39 AC 269 ms
98,928 KB
testcase_40 AC 272 ms
98,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin
import math
import random

def get(idx):

    i = int(idx)
    rem = idx - i
    if i + 1 >= len(A) or i < 0:
        return None

    ret = A[i] * (1-rem) + A[i+1] * rem
    return ret

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))

DF = [261.6,294.3, 327.0, 348.8, 392.4, 436.0, 490.5]
DN = ["C4", "D4", "E4", "F4", "G4", "A4", "B4"]

S = []

for freq in DF:

    ONE = N / freq
    nsum = 0
    nnum = 0
    diff = []

    for i in range(10**5):

        L = random.uniform(0,N-1-ONE)

        catL = get(L)
        catR = get(L+ONE)

        
        if catL != None and catR != None:
            diff.append( abs(catL - catR)**2 )

    diff.sort()
    S.append( diff[len(diff)//2] )

MI = min(S)

print (S,file=sys.stderr)

for i in range(7):
    if S[i] == MI:
        print (DN[i])
        break


        
0