結果
問題 | No.2067 ±2^k operations |
ユーザー | とりゐ |
提出日時 | 2022-08-25 21:51:39 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,100 ms / 2,000 ms |
コード長 | 590 bytes |
コンパイル時間 | 259 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 259,172 KB |
最終ジャッジ日時 | 2024-10-15 20:05:49 |
合計ジャッジ時間 | 15,210 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,096 KB |
testcase_01 | AC | 370 ms
90,708 KB |
testcase_02 | AC | 370 ms
91,408 KB |
testcase_03 | AC | 525 ms
93,260 KB |
testcase_04 | AC | 505 ms
93,512 KB |
testcase_05 | AC | 452 ms
94,224 KB |
testcase_06 | AC | 245 ms
78,592 KB |
testcase_07 | AC | 958 ms
257,104 KB |
testcase_08 | AC | 971 ms
256,984 KB |
testcase_09 | AC | 1,007 ms
256,352 KB |
testcase_10 | AC | 945 ms
256,664 KB |
testcase_11 | AC | 962 ms
251,384 KB |
testcase_12 | AC | 885 ms
259,172 KB |
testcase_13 | AC | 985 ms
255,996 KB |
testcase_14 | AC | 969 ms
258,916 KB |
testcase_15 | AC | 1,100 ms
255,856 KB |
testcase_16 | AC | 931 ms
255,504 KB |
testcase_17 | AC | 317 ms
80,896 KB |
testcase_18 | AC | 230 ms
76,800 KB |
testcase_19 | AC | 113 ms
76,032 KB |
testcase_20 | AC | 131 ms
76,288 KB |
testcase_21 | AC | 143 ms
76,416 KB |
testcase_22 | AC | 142 ms
76,160 KB |
testcase_23 | AC | 139 ms
76,032 KB |
ソースコード
memo={} def f(n): if n<=1: return n if n in memo: return memo[n] if n%2==0: res=f(n//2) memo[n]=res return res else: res=1+min(f(n//2),f(n//2+1)) memo[n]=res return res def calc(n): if n==1: return 0,1,0,0 if n%4==0: res,a,b,c=calc(n//4) res2=res*4+4*a+3*b+c a2=2*a+b+c b2=a+2*b+c c2=a+b+2*c return res2,a2,b2,c2 res,a,b,c=calc(n-1) p=f(n-1) q=f(n) res+=p if p<q: a+=1 if p==q: b+=1 if p>q: c+=1 return res,a,b,c for _ in range(int(input())): n=int(input()) print(calc(n+1)[0])