結果

問題 No.2517 Right Triangles on Circle
ユーザー ks2mks2m
提出日時 2023-10-27 21:31:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 2,587 ms
コンパイル使用メモリ 78,324 KB
実行使用メモリ 102,512 KB
最終ジャッジ日時 2024-09-25 13:35:22
合計ジャッジ時間 13,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,220 KB
testcase_01 AC 55 ms
50,112 KB
testcase_02 AC 56 ms
50,300 KB
testcase_03 AC 56 ms
50,296 KB
testcase_04 AC 54 ms
50,348 KB
testcase_05 AC 57 ms
50,216 KB
testcase_06 AC 56 ms
49,952 KB
testcase_07 AC 56 ms
50,320 KB
testcase_08 AC 57 ms
49,824 KB
testcase_09 AC 56 ms
50,432 KB
testcase_10 AC 57 ms
50,160 KB
testcase_11 AC 55 ms
50,336 KB
testcase_12 AC 57 ms
50,264 KB
testcase_13 AC 606 ms
100,140 KB
testcase_14 AC 465 ms
91,240 KB
testcase_15 AC 651 ms
102,108 KB
testcase_16 AC 634 ms
102,512 KB
testcase_17 AC 545 ms
88,652 KB
testcase_18 AC 554 ms
91,868 KB
testcase_19 AC 513 ms
81,036 KB
testcase_20 AC 516 ms
81,528 KB
testcase_21 AC 623 ms
101,084 KB
testcase_22 AC 269 ms
62,536 KB
testcase_23 AC 517 ms
84,484 KB
testcase_24 AC 348 ms
66,140 KB
testcase_25 AC 245 ms
62,472 KB
testcase_26 AC 596 ms
98,688 KB
testcase_27 AC 269 ms
62,516 KB
testcase_28 AC 210 ms
60,412 KB
testcase_29 AC 343 ms
66,044 KB
testcase_30 AC 272 ms
62,308 KB
testcase_31 AC 571 ms
86,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		int[] a = new int[n];
		Set<Integer> set = new HashSet<>();
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
			set.add(a[i]);
		}
		br.close();

		if (m % 2 == 1) {
			System.out.println(0);
			return;
		}

		long ans = 0;
		int m2 = m / 2;
		for (int i = 0; i < n; i++) {
			int v = a[i] + m2;
			v %= m;
			if (v == 0) {
				v = m;
			}
			if (set.contains(v)) {
				ans += n - 2;
			}
		}
		System.out.println(ans / 2);
	}
}
0