結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー kozykozy
提出日時 2020-10-09 22:08:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 201 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2024-07-20 11:44:42
合計ジャッジ時間 4,234 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 43 ms
57,600 KB
testcase_02 AC 42 ms
57,472 KB
testcase_03 AC 42 ms
57,724 KB
testcase_04 AC 41 ms
58,112 KB
testcase_05 AC 67 ms
58,624 KB
testcase_06 AC 84 ms
58,368 KB
testcase_07 AC 71 ms
58,368 KB
testcase_08 TLE -
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
        ans%=N
        s+=1
        if ans==1:
            print(s)
            break
0