結果

問題 No.3 ビットすごろく
ユーザー stnkienstnkien
提出日時 2020-03-29 01:24:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 76,860 KB
最終ジャッジ日時 2024-06-10 17:59:29
合計ジャッジ時間 3,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,488 KB
testcase_01 AC 38 ms
53,488 KB
testcase_02 AC 36 ms
53,260 KB
testcase_03 AC 59 ms
67,196 KB
testcase_04 WA -
testcase_05 AC 72 ms
74,568 KB
testcase_06 AC 61 ms
68,452 KB
testcase_07 AC 54 ms
64,460 KB
testcase_08 AC 71 ms
73,444 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 69 ms
74,580 KB
testcase_13 AC 55 ms
67,196 KB
testcase_14 AC 75 ms
76,416 KB
testcase_15 AC 76 ms
76,284 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 51 ms
67,060 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 33 ms
52,896 KB
testcase_22 AC 74 ms
76,432 KB
testcase_23 AC 78 ms
76,176 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 33 ms
51,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 37 ms
52,992 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def bc(x):
    x = x - ((x >> 1) & 0x5555555555555555)
    x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333)
    x = (x + (x >> 4)) & 0x0f0f0f0f0f0f0f0f
    x = x + (x >> 8)
    x = x + (x >> 16)
    x = x + (x >> 32)
    return x & 0x0000007f


N = int(input())
INF = float('inf')
dp = [INF]*(N+1)
dp[1] = 1

for i in range(1, N+1):
    c = bc(i)
    if i+c <= N:
        dp[i+c] = min(dp[i+c], dp[i]+1)
    if i-c >= 1:
        dp[i-c] = min(dp[i-c], dp[i]+1)

for i in range(1, N+1):
    c = bc(i)
    if i+c <= N:
        dp[i+c] = min(dp[i+c], dp[i]+1)
    if i-c >= 1:
        dp[i-c] = min(dp[i-c], dp[i]+1)

print(dp[N] if dp[N] < INF else -1)
0