結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 20:20:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 3,404 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-11-23 15:26:54
合計ジャッジ時間 6,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,308 KB
testcase_01 AC 138 ms
41,516 KB
testcase_02 AC 138 ms
41,472 KB
testcase_03 AC 139 ms
41,752 KB
testcase_04 AC 138 ms
41,288 KB
testcase_05 AC 136 ms
41,148 KB
testcase_06 AC 139 ms
41,624 KB
testcase_07 AC 136 ms
41,572 KB
testcase_08 AC 141 ms
41,004 KB
testcase_09 AC 142 ms
41,284 KB
testcase_10 AC 160 ms
41,356 KB
testcase_11 AC 221 ms
41,584 KB
testcase_12 AC 224 ms
41,544 KB
testcase_13 AC 232 ms
41,320 KB
testcase_14 AC 223 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con526 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		long m = s.nextLong();
		s.close();

		long a1 = 0,a2 = 1;
		for(int i = 3;i <= n;i++){
			long ai = (a1 + a2) % m;
			a1 = a2;
			a2 = ai;
		}
		System.out.println(a2);

	}

}
0