結果

問題 No.420 mod2漸化式
ユーザー YamaKasaYamaKasa
提出日時 2018-09-20 02:03:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 652 bytes
コンパイル時間 3,039 ms
コンパイル使用メモリ 76,580 KB
実行使用メモリ 55,196 KB
最終ジャッジ日時 2024-07-18 08:26:56
合計ジャッジ時間 9,478 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,596 KB
testcase_01 AC 154 ms
55,040 KB
testcase_02 AC 156 ms
55,148 KB
testcase_03 AC 155 ms
54,992 KB
testcase_04 AC 154 ms
54,796 KB
testcase_05 AC 154 ms
54,912 KB
testcase_06 AC 131 ms
54,596 KB
testcase_07 AC 152 ms
54,660 KB
testcase_08 AC 154 ms
54,900 KB
testcase_09 AC 157 ms
54,720 KB
testcase_10 AC 160 ms
55,040 KB
testcase_11 AC 151 ms
54,780 KB
testcase_12 AC 152 ms
54,968 KB
testcase_13 AC 151 ms
55,140 KB
testcase_14 AC 157 ms
54,852 KB
testcase_15 AC 160 ms
55,008 KB
testcase_16 AC 157 ms
55,140 KB
testcase_17 AC 156 ms
54,812 KB
testcase_18 AC 154 ms
55,128 KB
testcase_19 AC 156 ms
54,756 KB
testcase_20 AC 153 ms
55,000 KB
testcase_21 AC 152 ms
54,692 KB
testcase_22 AC 151 ms
55,008 KB
testcase_23 AC 150 ms
54,852 KB
testcase_24 AC 153 ms
54,880 KB
testcase_25 AC 151 ms
54,628 KB
testcase_26 AC 138 ms
54,644 KB
testcase_27 AC 152 ms
54,808 KB
testcase_28 AC 156 ms
55,196 KB
testcase_29 AC 150 ms
55,052 KB
testcase_30 AC 160 ms
54,956 KB
testcase_31 AC 156 ms
54,868 KB
testcase_32 AC 155 ms
54,956 KB
testcase_33 AC 131 ms
53,960 KB
testcase_34 AC 133 ms
53,984 KB
testcase_35 AC 129 ms
53,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long x = scan.nextLong();
		scan.close();
		if(x == 0) {
			System.out.println(1 + " " + 0);
			System.exit(0);
		}
		if(x > 31) {
			System.out.println(0 + " " + 0);
		}else {
			long c = comb(31, (int)x);
			long sum = ((long)Math.pow(2, 31) - 1) * comb(30, (int)x-1);
			System.out.println(c + " " + sum);
		}
	}
	static long comb(int n, int k) {
		if(n < k) {
			int t = n;
			n = k;
			k = t;
		}
		if(k == 0) {
			return 1;
		}else if(n == k) {
			return 1;
		}else {
			return comb(n - 1, k - 1) * n / k;
		}
	}
}
0