結果

問題 No.1041 直線大学
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-29 15:46:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 868 bytes
コンパイル時間 3,161 ms
コンパイル使用メモリ 77,492 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-05-06 23:16:11
合計ジャッジ時間 9,476 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
39,988 KB
testcase_01 AC 108 ms
40,148 KB
testcase_02 AC 116 ms
41,176 KB
testcase_03 AC 116 ms
40,884 KB
testcase_04 AC 106 ms
39,804 KB
testcase_05 AC 111 ms
40,456 KB
testcase_06 AC 107 ms
39,732 KB
testcase_07 AC 109 ms
40,044 KB
testcase_08 AC 149 ms
41,196 KB
testcase_09 AC 122 ms
40,992 KB
testcase_10 AC 142 ms
41,412 KB
testcase_11 WA -
testcase_12 AC 138 ms
41,192 KB
testcase_13 AC 115 ms
41,116 KB
testcase_14 WA -
testcase_15 AC 125 ms
41,120 KB
testcase_16 AC 129 ms
41,736 KB
testcase_17 WA -
testcase_18 AC 129 ms
41,156 KB
testcase_19 AC 128 ms
41,356 KB
testcase_20 AC 109 ms
40,692 KB
testcase_21 AC 122 ms
41,120 KB
testcase_22 AC 113 ms
40,872 KB
testcase_23 AC 129 ms
41,484 KB
testcase_24 AC 131 ms
41,464 KB
testcase_25 WA -
testcase_26 AC 122 ms
40,984 KB
testcase_27 AC 117 ms
41,264 KB
testcase_28 WA -
testcase_29 AC 99 ms
39,696 KB
testcase_30 AC 109 ms
39,968 KB
testcase_31 AC 116 ms
41,264 KB
testcase_32 AC 106 ms
40,752 KB
testcase_33 WA -
testcase_34 AC 105 ms
40,096 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 139 ms
41,348 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {
		public static void main (String[] args) {
			Scanner sc = new Scanner(System.in);
			int n = sc.nextInt();
			int[][] positions = new int[n][2];
			for (int i = 0; i < n; i ++) {
				positions[i][0] = sc.nextInt();
				positions[i][1] = sc.nextInt();
			}

			int count = 1;

			for (int i = 0; i < n; i ++) {
				for (int j = i+1; j < n; j ++) {
					double k = (positions[i][0] - positions[j][0]) == 0 ? 0 :
							(positions[i][1] - positions[j][1])/(positions[i][0] - positions[j][0]);
					double b = positions[i][1] - k * positions[i][0];
					int count_temp = 0;
					for (int ni = 0; ni < n; ni ++) {
						if (k * positions[ni][0] + b == positions[ni][1]) {
							count_temp ++;
						}
					}
					if (count_temp > count) {
						count = count_temp;
					}
				}
			}
			System.out.println(count);
	}
}
0