結果

問題 No.1452 XOR×OR
ユーザー kept1994kept1994
提出日時 2021-08-28 13:43:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 59,072 KB
最終ジャッジ日時 2024-05-01 15:51:30
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,188 KB
testcase_01 AC 34 ms
53,684 KB
testcase_02 AC 37 ms
57,204 KB
testcase_03 AC 34 ms
52,956 KB
testcase_04 AC 34 ms
53,016 KB
testcase_05 AC 33 ms
53,012 KB
testcase_06 AC 39 ms
58,344 KB
testcase_07 AC 37 ms
58,924 KB
testcase_08 AC 36 ms
57,848 KB
testcase_09 AC 36 ms
58,132 KB
testcase_10 AC 37 ms
58,580 KB
testcase_11 AC 39 ms
58,288 KB
testcase_12 AC 37 ms
57,400 KB
testcase_13 AC 36 ms
58,720 KB
testcase_14 AC 37 ms
57,968 KB
testcase_15 AC 36 ms
58,104 KB
testcase_16 AC 35 ms
58,220 KB
testcase_17 AC 36 ms
58,396 KB
testcase_18 AC 36 ms
57,988 KB
testcase_19 AC 36 ms
58,064 KB
testcase_20 AC 36 ms
58,380 KB
testcase_21 AC 36 ms
58,596 KB
testcase_22 AC 36 ms
58,844 KB
testcase_23 AC 36 ms
57,916 KB
testcase_24 AC 37 ms
58,548 KB
testcase_25 AC 36 ms
58,860 KB
testcase_26 AC 36 ms
57,248 KB
testcase_27 AC 37 ms
59,072 KB
testcase_28 AC 37 ms
57,340 KB
testcase_29 AC 38 ms
58,460 KB
testcase_30 AC 38 ms
57,936 KB
testcase_31 AC 36 ms
58,004 KB
testcase_32 AC 38 ms
57,628 KB
testcase_33 AC 38 ms
57,720 KB
testcase_34 AC 38 ms
57,660 KB
testcase_35 AC 39 ms
57,416 KB
testcase_36 AC 39 ms
58,384 KB
testcase_37 AC 39 ms
58,664 KB
testcase_38 AC 40 ms
58,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys


def main():
    N = int(input())
    # A, B = map(int,input().split())
    def getDivisors(n: int):
        divisors = []
        i = 1
        while i * i <= n:
            if n % i == 0:
                divisors.append([i])
                divisors[-1].append(n//i)
            i += 1
        return divisors
    ans = 0
    for a, b in getDivisors(N):
        c = 1
        for i in range(max(len(bin(a)[2:]), len(bin(b)[2:]))):
            bit = (a >> i & 1, b >> i & 1)
            if bit == (1, 1):
                c *= 2
            elif bit == (1, 0):
                break
        else:
            ans += c
    print(ans // 2)

    return

if __name__ == '__main__':
    main()
0