結果

問題 No.420 mod2漸化式
ユーザー hermione17hermione17
提出日時 2016-09-09 22:48:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 645 bytes
コンパイル時間 3,263 ms
コンパイル使用メモリ 75,944 KB
実行使用メモリ 42,196 KB
最終ジャッジ日時 2024-06-06 18:04:33
合計ジャッジ時間 9,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,628 KB
testcase_01 AC 142 ms
41,676 KB
testcase_02 AC 139 ms
41,660 KB
testcase_03 AC 140 ms
41,812 KB
testcase_04 AC 123 ms
41,640 KB
testcase_05 AC 123 ms
41,916 KB
testcase_06 AC 126 ms
41,640 KB
testcase_07 AC 139 ms
41,916 KB
testcase_08 AC 130 ms
41,276 KB
testcase_09 AC 128 ms
42,004 KB
testcase_10 AC 133 ms
41,788 KB
testcase_11 AC 131 ms
41,772 KB
testcase_12 AC 132 ms
41,768 KB
testcase_13 AC 133 ms
42,016 KB
testcase_14 AC 140 ms
41,816 KB
testcase_15 AC 136 ms
42,076 KB
testcase_16 AC 121 ms
41,872 KB
testcase_17 AC 140 ms
41,788 KB
testcase_18 AC 127 ms
41,816 KB
testcase_19 AC 134 ms
41,780 KB
testcase_20 AC 140 ms
42,020 KB
testcase_21 AC 138 ms
41,752 KB
testcase_22 AC 135 ms
41,728 KB
testcase_23 AC 129 ms
40,536 KB
testcase_24 AC 135 ms
41,504 KB
testcase_25 AC 137 ms
41,508 KB
testcase_26 AC 127 ms
41,488 KB
testcase_27 AC 138 ms
42,072 KB
testcase_28 AC 138 ms
42,196 KB
testcase_29 AC 126 ms
42,108 KB
testcase_30 AC 123 ms
42,080 KB
testcase_31 AC 122 ms
41,848 KB
testcase_32 AC 138 ms
41,924 KB
testcase_33 AC 137 ms
41,892 KB
testcase_34 AC 127 ms
41,580 KB
testcase_35 AC 128 ms
41,908 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;
			}
		} else if (x == 0) {
			ansCnt = 1;
		}
		
		System.out.println("" + ansCnt + " " + ansSum);
	}
	public static void main(String argv[]) {
		new Y420();
	}
}
0