結果

問題 No.1905 PURE PHRASE
ユーザー hitonanode
提出日時 2022-02-06 22:04:46
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 1,013 ms
コンパイル使用メモリ 102,712 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 17:20:27
合計ジャッジ時間 3,626 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

// sin で畳み込んでいるため WA
#include <cmath>
#include <iostream>
#include <string>
#include <vector>
using namespace std;

const vector<double> freqs{261.6, 294.3, 327.0, 348.8, 392.4, 436.0, 490.5};
const vector<string> names{"C4", "D4", "E4", "F4", "G4", "A4", "B4"};

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vector<double> A(N);
    for (auto &x : A) cin >> x;

    const double PI = acos(-1);
    double high = -1;
    int arghi = -1;

    for (int d = 0; d < int(freqs.size()); ++d) {
        double v = 0;
        for (int frame = 0; frame < N; ++frame) {
            v += sin(PI * 2 * frame / N * freqs[d]) * A[frame];
        }
        if (high < abs(v)) {
            high = abs(v);
            arghi = d;
        }
    }
    cout << names.at(arghi) << '\n';
}
0