結果

問題 No.685 Logical Operations
ユーザー 37zigen37zigen
提出日時 2018-05-12 17:29:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,192 bytes
コンパイル時間 3,084 ms
コンパイル使用メモリ 77,664 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-06-28 09:38:11
合計ジャッジ時間 7,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,756 KB
testcase_01 AC 135 ms
54,144 KB
testcase_02 AC 135 ms
53,892 KB
testcase_03 AC 136 ms
54,216 KB
testcase_04 AC 137 ms
54,076 KB
testcase_05 AC 136 ms
53,792 KB
testcase_06 AC 138 ms
53,852 KB
testcase_07 AC 136 ms
54,008 KB
testcase_08 AC 135 ms
54,128 KB
testcase_09 AC 135 ms
54,140 KB
testcase_10 AC 136 ms
53,896 KB
testcase_11 AC 136 ms
54,136 KB
testcase_12 AC 135 ms
54,204 KB
testcase_13 AC 139 ms
54,076 KB
testcase_14 AC 134 ms
54,000 KB
testcase_15 AC 138 ms
53,980 KB
testcase_16 AC 137 ms
54,192 KB
testcase_17 AC 136 ms
54,120 KB
testcase_18 AC 134 ms
53,852 KB
testcase_19 AC 138 ms
53,984 KB
testcase_20 AC 134 ms
53,976 KB
testcase_21 AC 133 ms
53,968 KB
testcase_22 AC 136 ms
54,112 KB
testcase_23 AC 135 ms
54,180 KB
testcase_24 AC 134 ms
53,860 KB
testcase_25 AC 134 ms
53,640 KB
testcase_26 AC 137 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	long mo = 1_000_000_000 + 7;

	void run() {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long[][] dp = new long[2][2];
		for (int i = 60; i >= 0; --i) {
			long[][] ndp = new long[2][2];
			if ((1L << i) > N)
				continue;
			if (N < 1L << (i + 1)) {
				ndp[0][0] += 1;
			} else {
				ndp[0][1] += 1;
			}
			for (int j = 0; j <= 1; ++j) {
				for (int k = 0; k <= 1; ++k) {
					for (int x = 0; x <= 1; ++x) {
						for (int y = 0; y <= 1; ++y) {
							if (k == 0 && y == 1 && ((1L << i) & N) == 0)
								continue;
							int idx1 = j, idx2 = k;
							if (y == 0 && ((1L << i) & N) > 0)
								idx2 = 1;
							if (x == 1 && y == 1)
								idx1 = 1;
							ndp[idx1][idx2] = (ndp[idx1][idx2] + dp[j][k]) % mo;
						}
					}
				}
			}
			for (int j = 0; j < ndp.length; ++j)
				for (int k = 0; k < ndp[j].length; ++k)
					dp[j][k] = ndp[j][k];
		}
		System.out.println((dp[1][1] + dp[1][0]) % mo);

	}

	public static void main(String[] args) {
		new Main().run();
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0