結果

問題 No.420 mod2漸化式
ユーザー 37zigen37zigen
提出日時 2016-09-10 01:17:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 3,930 ms
コンパイル使用メモリ 75,924 KB
実行使用メモリ 42,484 KB
最終ジャッジ日時 2024-11-16 19:16:03
合計ジャッジ時間 11,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
42,256 KB
testcase_01 WA -
testcase_02 AC 165 ms
42,152 KB
testcase_03 AC 159 ms
42,192 KB
testcase_04 AC 162 ms
42,236 KB
testcase_05 AC 160 ms
41,880 KB
testcase_06 AC 146 ms
41,580 KB
testcase_07 AC 162 ms
42,228 KB
testcase_08 AC 163 ms
42,124 KB
testcase_09 AC 157 ms
42,392 KB
testcase_10 AC 160 ms
42,000 KB
testcase_11 AC 159 ms
42,256 KB
testcase_12 AC 160 ms
42,136 KB
testcase_13 AC 164 ms
42,180 KB
testcase_14 AC 164 ms
42,324 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 161 ms
42,276 KB
testcase_20 AC 165 ms
42,144 KB
testcase_21 AC 159 ms
42,132 KB
testcase_22 AC 160 ms
42,012 KB
testcase_23 AC 162 ms
41,960 KB
testcase_24 AC 162 ms
42,216 KB
testcase_25 AC 157 ms
42,012 KB
testcase_26 AC 162 ms
42,124 KB
testcase_27 AC 159 ms
41,928 KB
testcase_28 AC 161 ms
42,244 KB
testcase_29 AC 160 ms
42,140 KB
testcase_30 AC 163 ms
42,152 KB
testcase_31 AC 160 ms
42,184 KB
testcase_32 AC 162 ms
41,924 KB
testcase_33 AC 134 ms
40,724 KB
testcase_34 AC 135 ms
40,836 KB
testcase_35 AC 121 ms
39,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

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 {
			long comb = 1;
			for (int i = 31; i >= Math.max(31 - x, x) + 1; i--) {
				comb *= i;
			}
			for (int i = Math.min(31 - x, x); i >= 1; i--) {
				comb /= i;
			}
			long sum = (1L << 31) - 1;
			sum *= comb * x / 31;
			System.out.println(comb + " " + sum);
		}
	}
}
0