結果

問題 No.461 三角形はいくつ?
ユーザー 37zigen37zigen
提出日時 2016-12-16 01:20:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,684 bytes
コンパイル時間 4,031 ms
コンパイル使用メモリ 79,424 KB
実行使用メモリ 119,000 KB
最終ジャッジ日時 2024-11-30 09:37:50
合計ジャッジ時間 155,691 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 139 ms
89,128 KB
testcase_03 AC 136 ms
46,588 KB
testcase_04 AC 243 ms
94,576 KB
testcase_05 TLE -
testcase_06 AC 4,825 ms
96,028 KB
testcase_07 TLE -
testcase_08 AC 3,495 ms
65,808 KB
testcase_09 AC 219 ms
94,344 KB
testcase_10 AC 945 ms
94,996 KB
testcase_11 TLE -
testcase_12 AC 2,555 ms
95,936 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 506 ms
96,404 KB
testcase_17 AC 496 ms
48,492 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 518 ms
48,668 KB
testcase_26 AC 571 ms
48,656 KB
testcase_27 AC 478 ms
48,180 KB
testcase_28 AC 446 ms
48,168 KB
testcase_29 TLE -
testcase_30 AC 3,976 ms
48,156 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 290 ms
47,324 KB
testcase_34 AC 314 ms
47,544 KB
testcase_35 AC 299 ms
47,840 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Q461 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayList<Fraction>[] f = new ArrayList[3];
		for (int i = 0; i < 3; ++i) {
			f[i] = new ArrayList<>();
			f[i].add(new Fraction(1, 1));
		}
		for (int i = 0; i < n; ++i) {
			int p = sc.nextInt();
			long a = sc.nextLong();
			long b = sc.nextLong();
			f[p].add(new Fraction(a, a + b));
		}
		Collections.sort(f[1]);
		Collections.sort(f[2]);
		long ans = 0;
		for (Fraction f0 : f[0]) {
			out: for (Fraction f1 : f[1]) {
				if (f0.add(f1).compareTo(ONE) == -1)
					continue;
				for (Fraction f2 : f[2]) {
					if (f1.add(f2).compareTo(ONE) == -1)
						continue;
					if (f0.add(f2).compareTo(ONE) == -1)
						continue;
					if (f0.add(f1).add(f2).equiv(TWO)) {
						continue;
					}
					++ans;
				}
			}
		}
		System.out.println(ans);
	}

	static Fraction ONE = new Fraction(1, 1);
	static Fraction TWO = new Fraction(1, 2);

	static class Fraction implements Comparable<Fraction> {
		long x;
		long y;

		public Fraction(long x, long y) {
			this.x = x;
			this.y = y;
		}

		Fraction add(Fraction o) {
			return new Fraction(x * o.y + o.x * y, y * o.y);
		}

		Fraction subtruct(Fraction o) {
			return new Fraction(x * o.y - o.x * y, y * o.y);
		}

		Fraction mul(Fraction o) {
			return new Fraction(x * o.x, y * o.y);
		}

		boolean equiv(Fraction o) {
			return x * o.y == y * o.x;
		}

		@Override
		public int compareTo(Fraction o) {
			if(o.y<0||y<0)throw new AssertionError();
			return Long.compare(x * o.y , o.x * y);
		}
	}
}
0