結果
問題 | No.245 貫け! |
ユーザー | nCk_cv |
提出日時 | 2015-07-17 22:49:34 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,147 bytes |
コンパイル時間 | 2,175 ms |
コンパイル使用メモリ | 78,284 KB |
実行使用メモリ | 57,832 KB |
最終ジャッジ日時 | 2024-07-08 09:18:40 |
合計ジャッジ時間 | 6,478 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
41,616 KB |
testcase_01 | AC | 115 ms
41,808 KB |
testcase_02 | AC | 113 ms
41,732 KB |
testcase_03 | AC | 111 ms
41,392 KB |
testcase_04 | AC | 106 ms
41,728 KB |
testcase_05 | AC | 103 ms
41,648 KB |
testcase_06 | WA | - |
testcase_07 | AC | 115 ms
41,752 KB |
testcase_08 | AC | 127 ms
42,412 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 217 ms
46,656 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
import java.awt.*; import java.awt.geom.*; import java.io.*; import java.util.*; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] a = new int[n]; int[] b = new int[n]; int[] c = new int[n]; int[] d = new int[n]; for(int i = 0; i < n; i++) { a[i] = sc.nextInt(); b[i] = sc.nextInt(); c[i] = sc.nextInt(); d[i] = sc.nextInt(); } int max = 0; for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { int ax = a[i]; int bx = b[i]; int cx = c[j]; int dx = d[j]; Line2D xL = new Line2D.Double(ax,bx,cx,dx); int ay = a[j]; int by = b[j]; int cy = c[i]; int dy = d[i]; Line2D yL = new Line2D.Double(ay,by,cy,dy); int xSum = 0; int ySum = 0; for(int k = 0; k < n; k++) { Line2D target = new Line2D.Double(a[k],b[k],c[k],d[k]); if(target.intersectsLine(xL)) xSum++; if(target.intersectsLine(yL)) ySum++; } max = Math.max(xSum, max); max = Math.max(ySum, max); } } System.out.println(max); } }