結果
問題 | No.1255 ハイレーツ・オブ・ボリビアン |
ユーザー | tamato |
提出日時 | 2020-10-09 23:43:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 82,048 KB |
最終ジャッジ日時 | 2024-07-20 14:35:13 |
合計ジャッジ時間 | 4,281 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
66,048 KB |
testcase_01 | AC | 50 ms
61,184 KB |
testcase_02 | AC | 54 ms
66,176 KB |
testcase_03 | AC | 56 ms
67,328 KB |
testcase_04 | AC | 55 ms
67,968 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
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] * 40001 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()