結果

問題 No.420 mod2漸化式
ユーザー hermione17hermione17
提出日時 2016-09-09 22:47:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 5,277 ms
コンパイル使用メモリ 75,792 KB
実行使用メモリ 42,480 KB
最終ジャッジ日時 2024-11-16 10:38:30
合計ジャッジ時間 10,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
42,024 KB
testcase_01 AC 143 ms
42,236 KB
testcase_02 AC 149 ms
42,128 KB
testcase_03 AC 147 ms
42,056 KB
testcase_04 AC 140 ms
42,072 KB
testcase_05 AC 150 ms
42,216 KB
testcase_06 WA -
testcase_07 AC 147 ms
42,480 KB
testcase_08 AC 147 ms
42,148 KB
testcase_09 AC 151 ms
42,040 KB
testcase_10 AC 144 ms
42,024 KB
testcase_11 AC 148 ms
42,152 KB
testcase_12 AC 134 ms
41,800 KB
testcase_13 AC 150 ms
42,180 KB
testcase_14 AC 145 ms
42,348 KB
testcase_15 AC 131 ms
41,760 KB
testcase_16 AC 128 ms
41,748 KB
testcase_17 AC 149 ms
42,332 KB
testcase_18 AC 144 ms
42,288 KB
testcase_19 AC 148 ms
42,248 KB
testcase_20 AC 159 ms
42,204 KB
testcase_21 AC 137 ms
41,832 KB
testcase_22 AC 140 ms
42,124 KB
testcase_23 AC 126 ms
42,180 KB
testcase_24 AC 137 ms
42,252 KB
testcase_25 AC 148 ms
42,228 KB
testcase_26 AC 144 ms
42,292 KB
testcase_27 AC 129 ms
41,864 KB
testcase_28 AC 134 ms
41,768 KB
testcase_29 AC 145 ms
42,252 KB
testcase_30 AC 147 ms
42,320 KB
testcase_31 AC 152 ms
42,120 KB
testcase_32 AC 143 ms
42,160 KB
testcase_33 AC 127 ms
41,660 KB
testcase_34 AC 135 ms
42,056 KB
testcase_35 AC 141 ms
41,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Y420 {
	Y420() {
		Scanner sc = new Scanner(System.in);
		
		int x = sc.nextInt();
		
		long ansCnt = 0, ansSum = 0;
	
		if (1 <= x && x <= 31) {
			long comb = 1;
			ansCnt = 1;
			for (int i = 0; i < x; i++) {
				ansCnt = ansCnt * (31 - i) / (i + 1);
			}
			for (int i = 0; i < x - 1; i++) {
				comb = comb * (30 - i) / (i + 1);
			}
			
			long power = 1;
			for (int i = 0; i < 31; i++) {
				ansSum += comb * power;
				power *= 2;
			}
		}
		
		System.out.println("" + ansCnt + " " + ansSum);
	}
	public static void main(String argv[]) {
		new Y420();
	}
}
0