結果
問題 | No.1255 ハイレーツ・オブ・ボリビアン |
ユーザー | tamato |
提出日時 | 2020-10-09 23:43:28 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 350 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 66,176 KB |
最終ジャッジ日時 | 2024-07-20 14:33:53 |
合計ジャッジ時間 | 2,017 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
ソースコード
mod = 1000000007 eps = 10**-9 def main(): import sys input = sys.stdin.readline def valuation(k): ret = 0 while k % 2 == 0: ret += 1 k //= 2 return ret is_prime = [True] * 32001 is_prime[0] = False is_prime[1] = False prime = [] for i in range(2, 40001): if is_prime[i]: prime.append(i) for j in range(2, 40001): if i * j > 40000: break is_prime[i*j] = False for _ in range(int(input())): N = int(input()) s, m, NN = 0, 1, 2 * N - 1 flg = 1 for p in prime: if NN % p == 0: flg = 0 break if flg: print(NN - 1) continue while True: k = NN + m v = valuation(k) s += v m = k >> v if m == 1: break print(s) if __name__ == '__main__': main()