結果
| 問題 |
No.1450 nahco314's First Problem
|
| コンテスト | |
| ユーザー |
👑 SPD_9X2
|
| 提出日時 | 2021-03-31 14:38:22 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 46 ms / 2,000 ms |
| コード長 | 323 bytes |
| コンパイル時間 | 168 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 57,344 KB |
| 最終ジャッジ日時 | 2024-11-08 14:14:49 |
| 合計ジャッジ時間 | 3,449 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 37 |
ソースコード
"""
Mは高々30ぐらい
"""
import sys
from sys import stdin
def popcnt(a):
ret = 0
while a > 0:
ret += a % 2
a //= 2
return ret
X = int(stdin.readline())
for i in range(40):
N = X ^ i
if popcnt(N) == i and 1 <= N <= 2*(10**18):
print (N)
sys.exit()
print (-1)
SPD_9X2