結果

問題 No.306 さいたま2008
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-18 19:09:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-06-06 20:54:32
合計ジャッジ時間 5,441 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,904 KB
testcase_01 AC 103 ms
52,776 KB
testcase_02 AC 115 ms
54,168 KB
testcase_03 AC 108 ms
53,660 KB
testcase_04 AC 96 ms
53,948 KB
testcase_05 AC 109 ms
53,872 KB
testcase_06 AC 99 ms
53,000 KB
testcase_07 AC 99 ms
54,116 KB
testcase_08 AC 96 ms
52,280 KB
testcase_09 AC 108 ms
53,904 KB
testcase_10 AC 116 ms
53,928 KB
testcase_11 AC 103 ms
52,484 KB
testcase_12 AC 117 ms
53,868 KB
testcase_13 AC 112 ms
54,060 KB
testcase_14 AC 102 ms
52,636 KB
testcase_15 AC 103 ms
52,660 KB
testcase_16 AC 102 ms
52,832 KB
testcase_17 AC 111 ms
53,872 KB
testcase_18 AC 103 ms
52,788 KB
testcase_19 AC 110 ms
53,804 KB
testcase_20 AC 112 ms
53,740 KB
testcase_21 AC 110 ms
54,224 KB
testcase_22 AC 109 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int xa=scanner.nextInt();
		int ya=scanner.nextInt();
		int xb=scanner.nextInt();
		int yb=scanner.nextInt();
		xa*=-1;
		double a=(double)(yb-ya)/(xb-xa);
		double ans=ya-a*xa;
		System.out.println(ans);
	}
}
0