結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー kozykozy
提出日時 2020-10-09 22:05:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 192 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 82,248 KB
最終ジャッジ日時 2024-07-20 11:32:40
合計ジャッジ時間 3,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,640 KB
testcase_01 AC 43 ms
59,320 KB
testcase_02 AC 48 ms
61,344 KB
testcase_03 AC 49 ms
62,864 KB
testcase_04 AC 51 ms
63,020 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
    N=int(input())
    N=(2*N)-1
    ans=1
    s=0
    while True:
        ans*=2
        s+=1
        if (ans-1)%N==0:
            print(s)
            break
0