結果
| 問題 |
No.1905 PURE PHRASE
|
| コンテスト | |
| ユーザー |
hitonanode
|
| 提出日時 | 2022-02-06 22:04:39 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 869 bytes |
| コンパイル時間 | 897 ms |
| コンパイル使用メモリ | 102,588 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-22 17:21:50 |
| 合計ジャッジ時間 | 2,625 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 31 WA * 7 |
ソースコード
// cos で畳み込んでいるため 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 += cos(PI * 2 * frame / N * freqs[d]) * A[frame];
}
if (high < abs(v)) {
high = abs(v);
arghi = d;
}
}
cout << names.at(arghi) << '\n';
}
hitonanode