結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-24 15:08:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,398 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 308,004 KB
最終ジャッジ日時 2024-07-04 09:06:10
合計ジャッジ時間 8,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,152 KB
testcase_01 AC 44 ms
54,768 KB
testcase_02 AC 54 ms
62,476 KB
testcase_03 AC 51 ms
62,132 KB
testcase_04 AC 55 ms
63,148 KB
testcase_05 AC 65 ms
73,020 KB
testcase_06 AC 71 ms
73,472 KB
testcase_07 AC 64 ms
73,440 KB
testcase_08 AC 914 ms
238,320 KB
testcase_09 AC 970 ms
250,048 KB
testcase_10 AC 934 ms
237,892 KB
testcase_11 AC 935 ms
242,264 KB
testcase_12 AC 960 ms
242,052 KB
testcase_13 AC 150 ms
114,932 KB
testcase_14 AC 1,398 ms
308,004 KB
testcase_15 AC 878 ms
224,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline
inf = 10**18


def main():
    N = int(input())
    mod = 2*N-1
    n = int(mod**0.5)+1

    ans = inf
    memo = defaultdict(list)

    X = pow(2, n, mod)
    two = 1
    for p in range(1, n+1):
        two = two * X % mod
        memo[two].append(p)
    two = 1
    for q in range(n):
        if memo[two]:
            val = n * memo[two][0] - q
            if val:
                ans = min(ans, val)
        two = two * 2 % mod

    return ans


T = int(input())
for _ in range(T):
    print(main())
0