結果

問題 No.328 きれいな連立方程式
ユーザー ぴろずぴろず
提出日時 2015-12-22 23:06:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-09-18 18:49:32
合計ジャッジ時間 7,560 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,856 KB
testcase_01 AC 137 ms
53,976 KB
testcase_02 AC 136 ms
53,932 KB
testcase_03 AC 134 ms
53,976 KB
testcase_04 AC 134 ms
53,840 KB
testcase_05 AC 133 ms
54,320 KB
testcase_06 AC 133 ms
53,832 KB
testcase_07 AC 135 ms
54,108 KB
testcase_08 AC 142 ms
54,164 KB
testcase_09 AC 135 ms
54,124 KB
testcase_10 AC 136 ms
53,764 KB
testcase_11 AC 133 ms
54,172 KB
testcase_12 AC 136 ms
54,188 KB
testcase_13 AC 137 ms
54,284 KB
testcase_14 AC 139 ms
54,244 KB
testcase_15 AC 137 ms
53,796 KB
testcase_16 AC 134 ms
53,856 KB
testcase_17 AC 134 ms
54,176 KB
testcase_18 AC 137 ms
54,312 KB
testcase_19 AC 136 ms
53,820 KB
testcase_20 AC 139 ms
54,228 KB
testcase_21 AC 124 ms
52,788 KB
testcase_22 AC 140 ms
54,176 KB
testcase_23 AC 136 ms
53,912 KB
testcase_24 AC 140 ms
53,864 KB
testcase_25 AC 135 ms
54,108 KB
testcase_26 AC 137 ms
54,092 KB
testcase_27 AC 137 ms
54,392 KB
testcase_28 AC 136 ms
54,440 KB
testcase_29 AC 137 ms
53,756 KB
testcase_30 AC 135 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no328;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		//実質writer解丸写しです(◞‸◟)
		Scanner sc = new Scanner(System.in);
		long c1 = sc.nextLong();
		long c2 = sc.nextLong();
		long c3 = sc.nextLong();
		long c4 = sc.nextLong();
		long a = c1*c4 - c2*c3;
		long b = (c3*c1 - c2*c2) * (c3*c3 - c2*c4);
		System.out.println(a*a+4*b>0 ? "R" : "I");
	}

}
0