結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー gu_21816943gu_21816943
提出日時 2017-06-26 01:24:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 2,529 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-10-04 05:51:09
合計ジャッジ時間 5,709 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,132 KB
testcase_01 AC 129 ms
54,156 KB
testcase_02 AC 132 ms
54,124 KB
testcase_03 AC 133 ms
54,004 KB
testcase_04 AC 154 ms
54,096 KB
testcase_05 AC 129 ms
54,176 KB
testcase_06 AC 130 ms
54,032 KB
testcase_07 AC 134 ms
54,180 KB
testcase_08 AC 137 ms
53,732 KB
testcase_09 AC 142 ms
53,852 KB
testcase_10 AC 163 ms
54,008 KB
testcase_11 AC 244 ms
53,916 KB
testcase_12 AC 245 ms
53,972 KB
testcase_13 AC 246 ms
54,076 KB
testcase_14 AC 247 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] str=sc.nextLine().split(" ");
		int[] num=new int[2];
		num[0]=Integer.parseInt(str[0]);
		num[1]=Integer.parseInt(str[1]);
		sc.close();
		long tmp1=0,tmp2=1;
		int count=2;
		while(count++<num[0]){
			long tmp=tmp1;
			tmp1=tmp2%num[1];
			tmp2=(tmp2+tmp)%num[1];
		}
		System.out.println(tmp2%num[1]);
	}
}
0