結果
問題 | No.3 ビットすごろく |
ユーザー | MtBotO |
提出日時 | 2017-09-18 19:15:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 900 bytes |
コンパイル時間 | 73 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-04-25 15:32:27 |
合計ジャッジ時間 | 9,942 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
10,752 KB |
testcase_01 | AC | 24 ms
10,752 KB |
testcase_02 | AC | 24 ms
10,880 KB |
testcase_03 | AC | 69 ms
10,752 KB |
testcase_04 | WA | - |
testcase_05 | AC | 284 ms
10,880 KB |
testcase_06 | AC | 95 ms
10,880 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 270 ms
10,880 KB |
testcase_13 | AC | 68 ms
10,880 KB |
testcase_14 | AC | 599 ms
11,008 KB |
testcase_15 | AC | 902 ms
11,136 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 29 ms
10,752 KB |
testcase_22 | AC | 610 ms
11,136 KB |
testcase_23 | AC | 921 ms
11,264 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
def main(): N = int(input()) # 探索位置情報格納用 p = [[1,1]] # 既に訪れた位置格納 visited = [1] while p: # 現在位置を取得 data = p.pop() point = data[0] cnt = data[1] + 1 # 移動距離 v = bin(point).count("1") # 前方移動位置 f_point = point + v # 後方移動位置 b_point = point - v # 目的位置に移動したかチェック if f_point == N or b_point == N : print(cnt) exit() # 位置を記憶 if f_point < N and not(f_point in visited): p.append([f_point,cnt]) visited.append(f_point) if b_point > 0 and not(b_point in visited): p.append([b_point,cnt]) visited.append(b_point) print(-1) if __name__ == "__main__": main()