結果

問題 No.303 割れません
ユーザー uwiuwi
提出日時 2015-11-13 23:50:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,596 bytes
コンパイル時間 4,419 ms
コンパイル使用メモリ 85,732 KB
実行使用メモリ 114,816 KB
最終ジャッジ日時 2023-10-11 17:11:13
合計ジャッジ時間 53,976 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,856 KB
testcase_01 AC 43 ms
49,560 KB
testcase_02 AC 44 ms
49,368 KB
testcase_03 AC 3,059 ms
109,784 KB
testcase_04 AC 5,237 ms
114,704 KB
testcase_05 AC 5,234 ms
114,284 KB
testcase_06 AC 5,906 ms
114,816 KB
testcase_07 AC 3,974 ms
109,324 KB
testcase_08 AC 3,968 ms
111,844 KB
testcase_09 AC 4,053 ms
110,236 KB
testcase_10 WA -
testcase_11 AC 5,341 ms
113,068 KB
testcase_12 AC 4,073 ms
111,780 KB
testcase_13 AC 3,567 ms
112,952 KB
testcase_14 AC 1,605 ms
79,304 KB
testcase_15 AC 1,763 ms
105,932 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package contest;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.InputMismatchException;

public class Q831 {
	InputStream is;
	PrintWriter out;
	String INPUT = "";
	
	void solve()
	{
		int n = ni();
		if(n == 2){
			out.println(3);
			out.println(1);
			return;
		}
		
		out.println(n);
		if(n % 2 == 0){
			out.println(F(n).subtract(F(n/2).multiply(F(n/2))));
		}else{
			out.println(F(n));
		}
	}
	
	public static BigInteger F(long n)
	{
		BigInteger a = BigInteger.ONE, b = BigInteger.ONE, d = BigInteger.ZERO;
		BigInteger va = BigInteger.ONE, vb = BigInteger.ZERO;
		
		for(n--;n>0;n>>>=1){
			if((n&1)==1){
				BigInteger nva = a.multiply(va).add(b.multiply(vb));
				BigInteger nvb = b.multiply(va).add(d.multiply(vb));
				va = nva;
				vb = nvb;
			}
			
			BigInteger b2 = b.multiply(b);
			BigInteger na = a.multiply(a).add(b2);
			BigInteger nb = b.multiply(a.add(d));
			BigInteger nd = d.multiply(d).add(b2);
			a = na; b = nb; d = nd;
		}
		
		return va;
	}
	
	void run() throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);
		
		long s = System.currentTimeMillis();
		solve();
		out.flush();
		if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
	}
	
	public static void main(String[] args) throws Exception { new Q831().run(); }
	
	private byte[] inbuf = new byte[1024];
	private int lenbuf = 0, ptrbuf = 0;
	
	private int readByte()
	{
		if(lenbuf == -1)throw new InputMismatchException();
		if(ptrbuf >= lenbuf){
			ptrbuf = 0;
			try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); }
			if(lenbuf <= 0)return -1;
		}
		return inbuf[ptrbuf++];
	}
	
	private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); }
	private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; }
	
	private double nd() { return Double.parseDouble(ns()); }
	private char nc() { return (char)skip(); }
	
	private String ns()
	{
		int b = skip();
		StringBuilder sb = new StringBuilder();
		while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ')
			sb.appendCodePoint(b);
			b = readByte();
		}
		return sb.toString();
	}
	
	private char[] ns(int n)
	{
		char[] buf = new char[n];
		int b = skip(), p = 0;
		while(p < n && !(isSpaceChar(b))){
			buf[p++] = (char)b;
			b = readByte();
		}
		return n == p ? buf : Arrays.copyOf(buf, p);
	}
	
	private char[][] nm(int n, int m)
	{
		char[][] map = new char[n][];
		for(int i = 0;i < n;i++)map[i] = ns(m);
		return map;
	}
	
	private int[] na(int n)
	{
		int[] a = new int[n];
		for(int i = 0;i < n;i++)a[i] = ni();
		return a;
	}
	
	private int ni()
	{
		int num = 0, b;
		boolean minus = false;
		while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'));
		if(b == '-'){
			minus = true;
			b = readByte();
		}
		
		while(true){
			if(b >= '0' && b <= '9'){
				num = num * 10 + (b - '0');
			}else{
				return minus ? -num : num;
			}
			b = readByte();
		}
	}
	
	private long nl()
	{
		long num = 0;
		int b;
		boolean minus = false;
		while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'));
		if(b == '-'){
			minus = true;
			b = readByte();
		}
		
		while(true){
			if(b >= '0' && b <= '9'){
				num = num * 10 + (b - '0');
			}else{
				return minus ? -num : num;
			}
			b = readByte();
		}
	}
	
	private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); }
}
0