結果

問題 No.461 三角形はいくつ?
ユーザー 37zigen37zigen
提出日時 2016-12-16 01:27:19
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,695 bytes
コンパイル時間 3,976 ms
コンパイル使用メモリ 79,796 KB
実行使用メモリ 96,432 KB
最終ジャッジ日時 2024-11-30 09:40:42
合計ジャッジ時間 155,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
46,628 KB
testcase_01 AC 121 ms
87,764 KB
testcase_02 AC 134 ms
89,172 KB
testcase_03 AC 136 ms
89,232 KB
testcase_04 AC 239 ms
53,112 KB
testcase_05 TLE -
testcase_06 AC 4,885 ms
95,920 KB
testcase_07 TLE -
testcase_08 AC 3,446 ms
53,228 KB
testcase_09 AC 194 ms
93,196 KB
testcase_10 AC 929 ms
95,036 KB
testcase_11 TLE -
testcase_12 AC 2,380 ms
95,880 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 492 ms
53,168 KB
testcase_17 AC 511 ms
48,336 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2,223 ms
48,000 KB
testcase_24 AC 1,864 ms
47,888 KB
testcase_25 AC 499 ms
48,112 KB
testcase_26 AC 505 ms
48,200 KB
testcase_27 AC 466 ms
47,956 KB
testcase_28 AC 457 ms
47,832 KB
testcase_29 TLE -
testcase_30 AC 3,987 ms
48,540 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 295 ms
47,856 KB
testcase_34 AC 315 ms
47,472 KB
testcase_35 AC 296 ms
47,436 KB
testcase_36 AC 4,211 ms
48,148 KB
testcase_37 AC 3,756 ms
48,008 KB
testcase_38 AC 4,002 ms
47,844 KB
testcase_39 AC 3,334 ms
47,840 KB
testcase_40 AC 4,113 ms
48,208 KB
testcase_41 AC 3,862 ms
48,460 KB
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(2, 1);

	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