結果
問題 | No.3 ビットすごろく |
ユーザー | kokoa1046 |
提出日時 | 2018-02-01 16:56:32 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 48 ms / 5,000 ms |
コード長 | 864 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-07-01 08:53:54 |
合計ジャッジ時間 | 2,320 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 32 ms
11,008 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 33 ms
10,880 KB |
testcase_04 | AC | 32 ms
10,880 KB |
testcase_05 | AC | 38 ms
10,880 KB |
testcase_06 | AC | 34 ms
10,880 KB |
testcase_07 | AC | 32 ms
10,880 KB |
testcase_08 | AC | 36 ms
10,880 KB |
testcase_09 | AC | 42 ms
11,008 KB |
testcase_10 | AC | 45 ms
11,008 KB |
testcase_11 | AC | 40 ms
11,008 KB |
testcase_12 | AC | 39 ms
10,880 KB |
testcase_13 | AC | 34 ms
11,008 KB |
testcase_14 | AC | 45 ms
11,136 KB |
testcase_15 | AC | 48 ms
11,136 KB |
testcase_16 | AC | 47 ms
11,136 KB |
testcase_17 | AC | 47 ms
11,264 KB |
testcase_18 | AC | 33 ms
11,008 KB |
testcase_19 | AC | 48 ms
11,264 KB |
testcase_20 | AC | 30 ms
10,880 KB |
testcase_21 | AC | 30 ms
10,880 KB |
testcase_22 | AC | 44 ms
11,136 KB |
testcase_23 | AC | 47 ms
11,136 KB |
testcase_24 | AC | 48 ms
11,136 KB |
testcase_25 | AC | 47 ms
11,136 KB |
testcase_26 | AC | 29 ms
10,880 KB |
testcase_27 | AC | 33 ms
10,880 KB |
testcase_28 | AC | 45 ms
11,008 KB |
testcase_29 | AC | 42 ms
11,008 KB |
testcase_30 | AC | 31 ms
10,880 KB |
testcase_31 | AC | 30 ms
10,880 KB |
testcase_32 | AC | 39 ms
11,008 KB |
ソースコード
# coding: utf-8 # Your code here! """ 2進数でたってる1の数 """ def bitget(x): ret = 0 while (x): x = x ^ (-x & x) ret += 1 return ret n = int(input()) table = [0 for i in range(n+1)] table[1] = 1 q = [1] next = 0 while len(q) != 0: if len(q) == 1: next = bitget(q[0]) if table[q[0]-next] == 0: table[q[0]-next] = table[q[0]]+1 q.append(q[0]-next) if q[0]+next <= n and table[q[0]+next] == 0: table[q[0]+next] = table[q[0]]+1 q.append(q[0]+next) q.pop(0) else: k = len(q) for i in range(k): next = bitget(q[i]) if table[q[i]-next] == 0: table[q[i]-next] = table[q[i]]+1 q.append(q[i]-next) if q[i]+next <= n and table[q[i]+next] == 0: table[q[i]+next] = table[q[i]]+1 q.append(q[i]+next) for i in range(k): q.pop(0) if table[n] != 0: print(table[n]) else: print('-1')