結果
問題 | No.685 Logical Operations |
ユーザー | nobuta05 |
提出日時 | 2022-03-29 23:25:33 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,342 bytes |
コンパイル時間 | 757 ms |
コンパイル使用メモリ | 101,608 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 14:44:24 |
合計ジャッジ時間 | 1,717 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | AC | 1 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,940 KB |
ソースコード
import std.stdio, std.string, std.conv; import std.algorithm, std.math; import std.range; import std.container.rbtree, std.container.dlist; import std.container.binaryheap, std.container.array; import std.typecons; alias mstring = char[]; const long INF = 1L << 60L; const long mod = 1_000_000_000 + 7; void chmin (T)(ref T x, T y) { x = min(x, y); } void chmax (T)(ref T x, T y) { x = max(x, y); } // 単一の数値を取得 // readln.chomp.to!int; // or // int a; // readf("%s\n", a); // 複数の数値を取得(可変数個の場合推奨) // readln.chomp.split.map!(to!long).array // 複数の数値を取得(固定数個の場合、推奨) // int a, b; // readf("%s %s\n", &a, &b); // インデントを一個ずらして複数の数値を取得(累積和とかで1-indexedの方が良い時がある) // long[] vs = readln.chomp.split.map!(to!long).array; // vs = [0L] ~ vs; // 小数点は以下で指定 // double ret = 10.0; // writefln("%.12f", ret); // 配列の最後の要素は arr[$-1] でアクセスできる void main () { long N = readln.chomp.to!long; const long maxK = 62L; auto dp = new long[][][][][](maxK + 1, 2, 2, 3, 2); dp[maxK][0][0][0][0] = 1L; for (long i = maxK; i > 0L; i--) { int ni = (N >> (i - 1L)) & 1L; foreach (j; 0 .. 2) foreach (k; 0 .. 2) foreach (l; 0 .. 3) foreach (m; 0 .. 2) foreach (xi; 0 .. 2) foreach (yi; 0 .. 2) { if (j == 0 && xi > yi) continue; if (k == 0 && yi > ni) continue; int nj = cast(int)(j == 1 || xi < yi); int nk = cast(int)(k == 1 || yi < ni); int nl; if (l == 0) { if (xi == yi && xi == 0) nl = 0; else if (xi == yi && xi == 1) nl = 2; else nl = 1; } else nl = l; int nm = cast(int)(m == 1 || (xi == yi && xi == 1)); dp[i - 1][nj][nk][nl][nm] += dp[i][j][k][l][m]; dp[i - 1][nj][nk][nl][nm] %= mod; } } long ret = 0L; foreach (j; 0 .. 2) foreach (k; 0 .. 2) { ret += dp[0][j][k][1][1]; ret %= mod; } writeln(ret); }