結果

問題 No.1905 PURE PHRASE
ユーザー 👑 rin204rin204
提出日時 2022-04-15 21:48:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,760 KB
実行使用メモリ 100,872 KB
最終ジャッジ日時 2024-06-07 02:58:14
合計ジャッジ時間 22,791 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 514 ms
100,548 KB
testcase_01 AC 507 ms
100,672 KB
testcase_02 AC 509 ms
100,696 KB
testcase_03 AC 504 ms
100,416 KB
testcase_04 AC 501 ms
100,064 KB
testcase_05 AC 503 ms
100,424 KB
testcase_06 AC 509 ms
100,384 KB
testcase_07 AC 510 ms
100,336 KB
testcase_08 AC 508 ms
100,216 KB
testcase_09 AC 502 ms
100,408 KB
testcase_10 AC 502 ms
100,112 KB
testcase_11 AC 504 ms
100,208 KB
testcase_12 WA -
testcase_13 AC 503 ms
100,336 KB
testcase_14 WA -
testcase_15 AC 504 ms
100,860 KB
testcase_16 AC 506 ms
100,304 KB
testcase_17 AC 507 ms
100,468 KB
testcase_18 AC 506 ms
100,300 KB
testcase_19 WA -
testcase_20 AC 527 ms
100,260 KB
testcase_21 AC 502 ms
100,408 KB
testcase_22 WA -
testcase_23 AC 512 ms
100,408 KB
testcase_24 AC 510 ms
100,168 KB
testcase_25 AC 503 ms
100,212 KB
testcase_26 AC 502 ms
100,332 KB
testcase_27 AC 504 ms
100,092 KB
testcase_28 WA -
testcase_29 AC 508 ms
100,120 KB
testcase_30 AC 509 ms
100,320 KB
testcase_31 AC 503 ms
100,364 KB
testcase_32 AC 510 ms
100,188 KB
testcase_33 WA -
testcase_34 AC 510 ms
100,252 KB
testcase_35 AC 510 ms
100,872 KB
testcase_36 WA -
testcase_37 AC 510 ms
100,704 KB
testcase_38 AC 509 ms
100,648 KB
testcase_39 AC 512 ms
100,296 KB
testcase_40 AC 509 ms
100,196 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):
        tmp.append((i % x, a))
    tmp.sort()
    ma = -1 << 30
    for i in range(44099):
        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