結果

問題 No.3054 ほぼ直角二等辺三角形
ユーザー 37zigen37zigen
提出日時 2019-12-19 06:33:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 835 bytes
コンパイル時間 2,574 ms
コンパイル使用メモリ 84,368 KB
実行使用メモリ 42,964 KB
最終ジャッジ日時 2024-07-07 00:53:40
合計ジャッジ時間 6,535 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
42,536 KB
testcase_01 AC 162 ms
42,152 KB
testcase_02 AC 155 ms
42,576 KB
testcase_03 AC 159 ms
42,420 KB
testcase_04 AC 164 ms
42,460 KB
testcase_05 AC 159 ms
42,580 KB
testcase_06 AC 158 ms
42,668 KB
testcase_07 AC 153 ms
42,572 KB
testcase_08 AC 153 ms
42,148 KB
testcase_09 AC 154 ms
42,500 KB
testcase_10 AC 162 ms
42,584 KB
testcase_11 AC 157 ms
42,280 KB
testcase_12 AC 162 ms
42,524 KB
testcase_13 AC 163 ms
42,516 KB
testcase_14 AC 149 ms
42,192 KB
testcase_15 AC 156 ms
42,964 KB
testcase_16 AC 157 ms
42,836 KB
testcase_17 AC 154 ms
42,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.math.MathContext;
import java.util.*;
import java.io.*;
import java.math.*;

class Main{

	public static void main(String[] args){
		new Main().run();
	}
	
	void run(){
		Scanner sc=new Scanner(System.in);
		int X=sc.nextInt();
		long u0=1,u=u0;
		long v0=1,v=v0;
		while(true){
			long nu=u*u0+2*v*v0;
			long nv=u*v0+v*u0;
			if(nu*nu-2*nv*nv!=1&&nu*nu-2*nv*nv!=-1){
				throw new AssertionError();
			}else if(nu*nu-2*nv*nv==-1){
				//System.out.println(nu+" "+nv+" "+(nu*nu-2*nv*nv));
			}
			u=nu;
			v=nv;
			if(u*u-2*v*v==-1&&v>=Math.pow(10,X-1)){
				long a=(u-1)/2,c=v,b=a+1;
				System.out.println(a+" "+b+" "+c);
				//System.out.println(a+" "+b+" "+(a*a+b*b)+" "+(c*c));
				return;
			}
		}
	}
	
	void tr(Object...objects){
		System.err.println(Arrays.deepToString(objects));
	}
}
0