結果

問題 No.420 mod2漸化式
ユーザー 37zigen37zigen
提出日時 2016-09-10 01:28:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 1,000 ms
コード長 764 bytes
コンパイル時間 3,896 ms
コンパイル使用メモリ 77,204 KB
実行使用メモリ 42,880 KB
最終ジャッジ日時 2024-06-06 18:24:44
合計ジャッジ時間 10,599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,688 KB
testcase_01 AC 156 ms
42,700 KB
testcase_02 AC 162 ms
42,840 KB
testcase_03 AC 157 ms
42,192 KB
testcase_04 AC 158 ms
42,372 KB
testcase_05 AC 160 ms
42,880 KB
testcase_06 AC 160 ms
42,564 KB
testcase_07 AC 155 ms
42,508 KB
testcase_08 AC 158 ms
42,352 KB
testcase_09 AC 161 ms
42,464 KB
testcase_10 AC 159 ms
42,768 KB
testcase_11 AC 160 ms
42,668 KB
testcase_12 AC 160 ms
42,660 KB
testcase_13 AC 148 ms
42,420 KB
testcase_14 AC 157 ms
42,540 KB
testcase_15 AC 160 ms
42,448 KB
testcase_16 AC 160 ms
42,748 KB
testcase_17 AC 160 ms
42,372 KB
testcase_18 AC 156 ms
42,304 KB
testcase_19 AC 143 ms
41,824 KB
testcase_20 AC 158 ms
42,252 KB
testcase_21 AC 158 ms
42,316 KB
testcase_22 AC 145 ms
41,912 KB
testcase_23 AC 152 ms
41,772 KB
testcase_24 AC 160 ms
42,700 KB
testcase_25 AC 159 ms
42,412 KB
testcase_26 AC 147 ms
41,804 KB
testcase_27 AC 159 ms
42,680 KB
testcase_28 AC 146 ms
42,040 KB
testcase_29 AC 147 ms
42,036 KB
testcase_30 AC 155 ms
42,624 KB
testcase_31 AC 161 ms
42,496 KB
testcase_32 AC 160 ms
42,792 KB
testcase_33 AC 132 ms
41,196 KB
testcase_34 AC 119 ms
41,140 KB
testcase_35 AC 130 ms
41,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

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

public class Q420 {
	public static void main(String[] args) {
		new Q420().solver();
	}

	void solver() {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		if (x >= 32) {
			System.out.println(0 + " " + 0);
		} else {
			BigInteger comb = new BigInteger("1");
			for (int i = 31; i >= Math.max(31 - x, x) + 1; i--) {
				comb = comb.multiply(BigInteger.valueOf(i));
			}
			for (int i = Math.min(31 - x, x); i >= 1; i--) {
				comb = comb.divide(BigInteger.valueOf(i));
			}
			BigInteger sum = BigInteger.valueOf((1L << 31) - 1);
			sum=sum.multiply(comb.multiply(BigInteger.valueOf(x)).divide(BigInteger.valueOf(31)));
			System.out.println(comb + " " + sum);
		}
	}
}
0