結果

問題 No.314 ケンケンパ
ユーザー tetsutetsu
提出日時 2017-10-17 17:31:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 1,000 ms
コード長 2,376 bytes
コンパイル時間 4,307 ms
コンパイル使用メモリ 77,912 KB
実行使用メモリ 65,044 KB
最終ジャッジ日時 2024-04-29 00:36:37
合計ジャッジ時間 8,119 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
64,424 KB
testcase_01 AC 135 ms
41,484 KB
testcase_02 AC 137 ms
41,040 KB
testcase_03 AC 134 ms
41,252 KB
testcase_04 AC 136 ms
41,560 KB
testcase_05 AC 137 ms
41,152 KB
testcase_06 AC 139 ms
41,024 KB
testcase_07 AC 138 ms
41,096 KB
testcase_08 AC 135 ms
40,932 KB
testcase_09 AC 135 ms
41,048 KB
testcase_10 AC 138 ms
41,152 KB
testcase_11 AC 136 ms
41,660 KB
testcase_12 AC 139 ms
41,116 KB
testcase_13 AC 136 ms
41,096 KB
testcase_14 AC 139 ms
41,168 KB
testcase_15 AC 137 ms
41,400 KB
testcase_16 AC 139 ms
41,808 KB
testcase_17 AC 147 ms
43,548 KB
testcase_18 AC 163 ms
52,680 KB
testcase_19 AC 178 ms
65,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;

public class P314 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		final long mod = 1000000000+7;
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long[] ken1 = new long[N+1];
		long[] ken2 = new long[N+1];
		long[] pa = new long[N+1];
		ken1[1] = 1; ken2[1] = 0; pa[1] = 0;
		for(int i=2; i<N+1; i++) {
			ken1[i] = pa[i-1]%mod;
			ken2[i] = ken1[i-1]%mod;
			pa[i] = (ken1[i-1]+ken2[i-1])%mod;
		}
		System.out.println((ken1[N]+ken2[N]+pa[N])%mod);
	}
	
	// print
	static void print(String s) {
		System.out.println(s);
	}
	
	// union find lib
	// usage:
	// 最初にinitを呼ぶ
	// root: 直接は呼ばないで
	// unite: まとめる
	// same: グループ判定
	static void init(int par[], int N) {
		for(int i=0; i<N; i++) {
			par[i] = i;
		}
	}
	
	static int root(int x, int [] par) {
		if(par[x] == x) {
			return x;
		} else {
			return (par[x] = root(par[x], par));
		}
	}
	
	static boolean same(int x, int y, int[] par) {
		return root(x, par) == root(y, par);
	}
	
	static void unite(int x, int y, int[] par) {
		x = root(x, par);
		y = root(y, par);
		if(x == y) return;
		par[x] = y;
	}
	
	// end union find lib
	
	// number lib
	
	static int max(int...ls) {
		int ans = Integer.MIN_VALUE;
		for(int i=0; i<ls.length; i++) {
			ans = Math.max(ans, ls[i]);
		}
		return ans;
	}
	
	static int min(int...ls) {
		int ans = Integer.MAX_VALUE;
		for(int i=0; i<ls.length; i++) {
			ans = Math.min(ans, ls[i]);
		}
		return ans;
	}
	
	static long lcm(long a, long b) {
		return a*(b/gcd(a, b));
	}
	
	static long gcd(long a, long b) {
		long ta = Math.max(a, b);
		long tb = Math.min(a, b);
		long tmp;
		while((tmp = ta%tb) != 0) {
			ta = tb;
			tb = tmp;
		}
		return tb;
	}
	
	static long modcomb(long n, long k, long mod) {
		if(k==1) {
			return n;
		}
		
		long ans = 1;
		for(long i=n; i>=n-k+1; i--) {
			ans = (ans * i)%mod;
		}
		for(long i=k; 0<i; i--) {
			ans = (ans * modpow(i, mod-2, mod)) % mod;
		}
		return ans;
	}
	
	static long modpow(long a, long b, long mod) {
		if(b==0) return 1;
		if(b%2==0) {
			long d = modpow(a, b/2, mod);
			return (d*d)%mod;
		} else {
			return (a*modpow(a, b-1, mod))%mod;
		}
	}
	
	static int disit(long a, long d) {
		int count = 0;
		while(a!=0) {
			a = a/d;
			count++;
		}
		return count;
	}
	
	// end number lib
}
0