結果

問題 No.2067 ±2^k operations
ユーザー とりゐとりゐ
提出日時 2022-08-30 17:37:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 712 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 183,908 KB
最終ジャッジ日時 2024-11-07 12:01:45
合計ジャッジ時間 11,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 262 ms
86,204 KB
testcase_02 AC 200 ms
84,816 KB
testcase_03 AC 275 ms
85,088 KB
testcase_04 AC 307 ms
86,536 KB
testcase_05 AC 257 ms
85,236 KB
testcase_06 AC 118 ms
76,544 KB
testcase_07 AC 653 ms
178,992 KB
testcase_08 AC 705 ms
183,716 KB
testcase_09 AC 693 ms
183,908 KB
testcase_10 AC 663 ms
182,184 KB
testcase_11 AC 623 ms
179,396 KB
testcase_12 AC 674 ms
182,596 KB
testcase_13 AC 593 ms
180,256 KB
testcase_14 AC 710 ms
183,848 KB
testcase_15 AC 703 ms
181,740 KB
testcase_16 AC 712 ms
183,840 KB
testcase_17 AC 193 ms
80,128 KB
testcase_18 AC 113 ms
76,032 KB
testcase_19 AC 109 ms
76,032 KB
testcase_20 AC 109 ms
76,032 KB
testcase_21 AC 113 ms
76,416 KB
testcase_22 AC 116 ms
76,288 KB
testcase_23 AC 113 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

memo={}
def calc(n):
  if n<=0:
    return 0
  if n in memo:
    return memo[n]
  memo[n]=calc(n//2)+calc((n+3)//4-1)+calc((n+1)//4)+(n+3)//4+(n+1)//4
  return memo[n]

for _ in range(int(input())):
  print(calc(int(input())))
0