結果

問題 No.2853 A + B Problem
ユーザー prin_kemkemprin_kemkem
提出日時 2024-08-25 13:47:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 80,876 KB
最終ジャッジ日時 2024-08-25 13:47:41
合計ジャッジ時間 3,770 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
80,640 KB
testcase_01 AC 86 ms
80,696 KB
testcase_02 AC 86 ms
80,584 KB
testcase_03 AC 86 ms
80,576 KB
testcase_04 AC 86 ms
80,772 KB
testcase_05 AC 84 ms
80,576 KB
testcase_06 AC 86 ms
80,588 KB
testcase_07 AC 84 ms
80,568 KB
testcase_08 AC 85 ms
80,600 KB
testcase_09 AC 87 ms
80,864 KB
testcase_10 AC 87 ms
80,716 KB
testcase_11 AC 83 ms
80,876 KB
testcase_12 AC 88 ms
80,364 KB
testcase_13 AC 85 ms
80,572 KB
testcase_14 AC 86 ms
80,812 KB
testcase_15 AC 82 ms
80,620 KB
testcase_16 AC 84 ms
80,580 KB
testcase_17 AC 83 ms
80,564 KB
testcase_18 AC 84 ms
80,268 KB
testcase_19 AC 84 ms
80,632 KB
testcase_20 AC 85 ms
80,412 KB
testcase_21 AC 87 ms
80,616 KB
testcase_22 AC 87 ms
80,684 KB
testcase_23 AC 89 ms
80,688 KB
testcase_24 AC 88 ms
80,600 KB
testcase_25 AC 85 ms
80,808 KB
testcase_26 AC 85 ms
80,660 KB
testcase_27 AC 85 ms
80,808 KB
testcase_28 AC 85 ms
80,588 KB
testcase_29 AC 85 ms
80,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
# from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
# from more_itertools import distinct_permutations
from heapq import heapify, heappop, heappush
import math
import bisect
from pprint import pprint
from random import randint, shuffle, randrange
import sys
# sys.setrecursionlimit(200000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################   

N = int(input())
ans = 1
while N:
    if N&1: ans *= 2
    N >>= 1
print(max(ans-2, 0))
0