結果
| 問題 |
No.1255 ハイレーツ・オブ・ボリビアン
|
| コンテスト | |
| ユーザー |
nehan_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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 TLE * 1 -- * 7 |
ソースコード
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)
nehan_der_thal