結果

問題 No.2067 ±2^k operations
ユーザー とりゐとりゐ
提出日時 2022-09-02 23:12:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 183,920 KB
最終ジャッジ日時 2024-11-16 06:05:33
合計ジャッジ時間 9,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,028 KB
testcase_01 AC 244 ms
85,952 KB
testcase_02 AC 185 ms
84,060 KB
testcase_03 AC 298 ms
85,880 KB
testcase_04 AC 283 ms
85,184 KB
testcase_05 AC 234 ms
85,456 KB
testcase_06 AC 102 ms
77,136 KB
testcase_07 AC 594 ms
178,804 KB
testcase_08 AC 618 ms
183,920 KB
testcase_09 AC 620 ms
183,264 KB
testcase_10 AC 602 ms
182,192 KB
testcase_11 AC 569 ms
179,596 KB
testcase_12 AC 609 ms
182,316 KB
testcase_13 AC 526 ms
179,352 KB
testcase_14 AC 634 ms
183,720 KB
testcase_15 AC 617 ms
181,660 KB
testcase_16 AC 622 ms
183,452 KB
testcase_17 AC 176 ms
79,692 KB
testcase_18 AC 99 ms
75,976 KB
testcase_19 AC 94 ms
75,904 KB
testcase_20 AC 93 ms
76,276 KB
testcase_21 AC 97 ms
76,224 KB
testcase_22 AC 98 ms
76,220 KB
testcase_23 AC 97 ms
76,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

memo={}
memo[0]=0
def calc(n):
  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