結果
問題 | No.3 ビットすごろく |
ユーザー | MtBotO |
提出日時 | 2017-09-18 19:11:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 888 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-04-25 15:32:15 |
合計ジャッジ時間 | 9,340 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,752 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 28 ms
10,880 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
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 True: # 現在位置を取得 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) if __name__ == "__main__": main()