結果

問題 No.2517 Right Triangles on Circle
ユーザー kotatsugamekotatsugame
提出日時 2023-10-27 21:25:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 658 ms
コンパイル使用メモリ 78,772 KB
実行使用メモリ 6,288 KB
最終ジャッジ日時 2023-10-27 21:26:05
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
testcase_11 AC 1 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 71 ms
6,288 KB
testcase_14 AC 70 ms
6,288 KB
testcase_15 AC 78 ms
6,288 KB
testcase_16 AC 75 ms
6,288 KB
testcase_17 AC 59 ms
6,288 KB
testcase_18 AC 56 ms
6,288 KB
testcase_19 AC 49 ms
6,288 KB
testcase_20 AC 54 ms
6,288 KB
testcase_21 AC 76 ms
6,288 KB
testcase_22 AC 22 ms
4,348 KB
testcase_23 AC 55 ms
6,288 KB
testcase_24 AC 27 ms
6,288 KB
testcase_25 AC 18 ms
4,348 KB
testcase_26 AC 65 ms
6,288 KB
testcase_27 AC 21 ms
4,348 KB
testcase_28 AC 12 ms
4,348 KB
testcase_29 AC 26 ms
6,288 KB
testcase_30 AC 16 ms
4,348 KB
testcase_31 AC 55 ms
6,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
#include<algorithm>
#include<cmath>
#include<iomanip>
using namespace std;
int N,M,A[6<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M;
	for(int i=0;i<N;i++)
	{
		cin>>A[i];
		A[i+N]=A[i]+M;
	}
	sort(A,A+N+N);
	long long cnt=0;
	int j=0;
	for(int i=0;i<N;i++)
	{
		while(2LL*A[j]<2LL*A[i]+M)j++;
		if(2LL*A[j]==2LL*A[i]+M)cnt++;
	}
	cout<<cnt/2*(N-2)<<endl;
}
0