結果
問題 | No.2517 Right Triangles on Circle |
ユーザー | YZYZ_ |
提出日時 | 2023-10-27 22:45:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,018 bytes |
コンパイル時間 | 2,436 ms |
コンパイル使用メモリ | 205,928 KB |
実行使用メモリ | 16,416 KB |
最終ジャッジ日時 | 2024-09-25 14:45:10 |
合計ジャッジ時間 | 6,223 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,884 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,812 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; long long M; double PI = acos(-1); cin >> N >> M; vector<int> A(N); vector<double> Px(N); vector<double> Py(N); for (int i = 0; i < N; i++) { cin >> A[i]; Px[i] = cos(2 * PI * A[i] / M); Py[i] = sin(2 * PI * A[i] / M); } long long ans = 0; for (int i = 0; i < N; i++) { for (int j = i + 1; j < N; j++) { for (int k = j + 1; k < N; k++) { long long a = round((Px[i] - Px[j]) * (Px[i] - Px[j]) + (Py[i] - Py[j]) * (Py[i] - Py[j])); long long b = round((Px[j] - Px[k]) * (Px[j] - Px[k]) + (Py[j] - Py[k]) * (Py[j] - Py[k])); long long c = round((Px[i] - Px[k]) * (Px[i] - Px[k]) + (Py[i] - Py[k]) * (Py[i] - Py[k])); if (a + b == c || a + c == b || b + c == a) { ans++; } } } } cout << ans << endl; return 0; }