結果

問題 No.2749 随伴関手入門
ユーザー ks2mks2m
提出日時 2024-05-10 23:09:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 2,915 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-12-20 07:22:39
合計ジャッジ時間 7,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		if (n == 1) {
			System.out.println(1);
			return;
		}

		BigInteger nb = BigInteger.valueOf(n);
		BigInteger a = BigInteger.ONE;
		BigInteger b = BigInteger.ONE;
		int i = 2;
		while (true) {
			i++;
			BigInteger c = a.add(b);
			if (c.mod(nb).compareTo(BigInteger.ZERO) == 0) {
				System.out.println(i);
				return;
			}
			a = b;
			b = c;
		}
	}
}
0