結果
問題 | No.1905 PURE PHRASE |
ユーザー | dn6049949 |
提出日時 | 2022-04-15 21:44:30 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 947 bytes |
コンパイル時間 | 429 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 46,336 KB |
最終ジャッジ日時 | 2024-12-25 00:21:10 |
合計ジャッジ時間 | 27,943 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 611 ms
45,816 KB |
testcase_01 | AC | 613 ms
45,688 KB |
testcase_02 | AC | 617 ms
46,084 KB |
testcase_03 | AC | 614 ms
45,688 KB |
testcase_04 | AC | 618 ms
46,068 KB |
testcase_05 | AC | 611 ms
45,560 KB |
testcase_06 | AC | 624 ms
45,560 KB |
testcase_07 | AC | 616 ms
46,076 KB |
testcase_08 | AC | 612 ms
45,944 KB |
testcase_09 | AC | 628 ms
46,084 KB |
testcase_10 | AC | 615 ms
45,956 KB |
testcase_11 | AC | 604 ms
46,080 KB |
testcase_12 | AC | 610 ms
45,688 KB |
testcase_13 | AC | 612 ms
45,688 KB |
testcase_14 | AC | 605 ms
45,688 KB |
testcase_15 | AC | 618 ms
45,788 KB |
testcase_16 | AC | 622 ms
46,076 KB |
testcase_17 | AC | 614 ms
46,336 KB |
testcase_18 | AC | 609 ms
46,200 KB |
testcase_19 | AC | 606 ms
45,944 KB |
testcase_20 | AC | 611 ms
45,696 KB |
testcase_21 | AC | 606 ms
46,132 KB |
testcase_22 | AC | 609 ms
46,068 KB |
testcase_23 | AC | 608 ms
46,072 KB |
testcase_24 | AC | 609 ms
45,684 KB |
testcase_25 | AC | 610 ms
46,136 KB |
testcase_26 | AC | 627 ms
46,076 KB |
testcase_27 | AC | 606 ms
45,948 KB |
testcase_28 | AC | 605 ms
46,072 KB |
testcase_29 | AC | 621 ms
45,952 KB |
testcase_30 | AC | 623 ms
46,336 KB |
testcase_31 | AC | 620 ms
45,696 KB |
testcase_32 | WA | - |
testcase_33 | AC | 616 ms
45,944 KB |
testcase_34 | AC | 609 ms
46,076 KB |
testcase_35 | AC | 600 ms
46,068 KB |
testcase_36 | AC | 612 ms
45,956 KB |
testcase_37 | WA | - |
testcase_38 | AC | 599 ms
45,696 KB |
testcase_39 | AC | 608 ms
45,688 KB |
testcase_40 | AC | 621 ms
46,124 KB |
ソースコード
#!usr/bin/env python3 from collections import defaultdict, deque from heapq import heappush, heappop from itertools import permutations, accumulate import sys import math import bisect import numpy as np def LI(): return [int(x) for x in sys.stdin.readline().split()] def I(): return int(sys.stdin.readline()) def IR(n): return [I() for _ in range(n)] def LIR(n): return [LI() for _ in range(n)] sys.setrecursionlimit(1000000) mod = 1000000007 hz = [261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5] ch = ["C4", "D4", "E4", "F4", "G4", "A4", "B4"] def main(): n = I() a = np.array(LI()) acf = np.fft.ifft(a**2).real max_ = 0 argmax = None for index,f in enumerate(hz): i = round(f) s = 0 for j in range(i-3,i+4): s += abs(acf[j]) if max_ < s: max_ = s argmax = index print(ch[argmax]) return if __name__ == "__main__": main()