結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
39,988 KB
testcase_01 AC 100 ms
39,952 KB
testcase_02 AC 94 ms
39,304 KB
testcase_03 AC 108 ms
40,932 KB
testcase_04 AC 116 ms
40,740 KB
testcase_05 AC 106 ms
41,092 KB
testcase_06 AC 98 ms
39,944 KB
testcase_07 AC 116 ms
41,140 KB
testcase_08 AC 121 ms
41,240 KB
testcase_09 AC 106 ms
39,812 KB
testcase_10 AC 135 ms
41,492 KB
testcase_11 AC 138 ms
40,960 KB
testcase_12 AC 136 ms
41,296 KB
testcase_13 AC 115 ms
40,636 KB
testcase_14 WA -
testcase_15 AC 120 ms
41,108 KB
testcase_16 AC 131 ms
41,308 KB
testcase_17 WA -
testcase_18 AC 134 ms
41,392 KB
testcase_19 AC 128 ms
41,016 KB
testcase_20 AC 101 ms
39,992 KB
testcase_21 AC 129 ms
41,300 KB
testcase_22 AC 113 ms
40,536 KB
testcase_23 AC 128 ms
40,708 KB
testcase_24 AC 132 ms
41,408 KB
testcase_25 WA -
testcase_26 AC 103 ms
40,168 KB
testcase_27 AC 119 ms
41,524 KB
testcase_28 AC 110 ms
40,812 KB
testcase_29 AC 114 ms
40,288 KB
testcase_30 AC 112 ms
41,188 KB
testcase_31 AC 102 ms
39,964 KB
testcase_32 AC 97 ms
39,976 KB
testcase_33 WA -
testcase_34 AC 119 ms
41,092 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 141 ms
41,440 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;
					}
				}
			}
			int count_temp = 0;
			for (int ni = 0; ni < n; ni ++) {

				if (positions[ni][0] == 0) {
					count_temp ++;
				}
			}
			if (count_temp > count) {
				count = count_temp;
			}
			System.out.println(count);
	}
}
0