結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-10-10 00:02:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 215 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 66,132 KB
最終ジャッジ日時 2024-07-20 14:50:30
合計ジャッジ時間 4,349 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 KB
testcase_01 AC 47 ms
57,088 KB
testcase_02 AC 46 ms
57,856 KB
testcase_03 AC 47 ms
57,344 KB
testcase_04 AC 49 ms
57,600 KB
testcase_05 AC 85 ms
59,008 KB
testcase_06 AC 103 ms
58,624 KB
testcase_07 AC 87 ms
59,136 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

T, = map(int, input().split())
for i in range(T):
    N, = map(int, input().split())
    c = 1
    i = 0
    while 1:
        i += 1
        c = c*2%(2*N-1)
        if c%(2*N-1) == 1:
            break
    print(i)
0