結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,060 KB
testcase_01 AC 39 ms
52,636 KB
testcase_02 AC 41 ms
57,792 KB
testcase_03 AC 38 ms
53,148 KB
testcase_04 AC 37 ms
51,952 KB
testcase_05 AC 38 ms
52,696 KB
testcase_06 AC 40 ms
59,076 KB
testcase_07 AC 41 ms
57,536 KB
testcase_08 AC 42 ms
58,536 KB
testcase_09 AC 41 ms
57,188 KB
testcase_10 AC 41 ms
59,084 KB
testcase_11 AC 41 ms
57,328 KB
testcase_12 AC 42 ms
58,084 KB
testcase_13 AC 42 ms
58,096 KB
testcase_14 AC 42 ms
58,336 KB
testcase_15 AC 41 ms
59,020 KB
testcase_16 AC 41 ms
57,344 KB
testcase_17 AC 42 ms
57,980 KB
testcase_18 AC 42 ms
57,532 KB
testcase_19 AC 41 ms
57,732 KB
testcase_20 AC 40 ms
57,120 KB
testcase_21 AC 41 ms
59,172 KB
testcase_22 AC 41 ms
57,528 KB
testcase_23 AC 43 ms
58,108 KB
testcase_24 AC 42 ms
58,212 KB
testcase_25 AC 40 ms
57,976 KB
testcase_26 AC 41 ms
57,744 KB
testcase_27 AC 41 ms
58,056 KB
testcase_28 AC 41 ms
59,260 KB
testcase_29 AC 40 ms
57,616 KB
testcase_30 AC 39 ms
58,092 KB
testcase_31 AC 41 ms
58,212 KB
testcase_32 AC 41 ms
57,392 KB
testcase_33 AC 42 ms
57,344 KB
testcase_34 AC 39 ms
58,960 KB
testcase_35 AC 42 ms
57,668 KB
testcase_36 AC 42 ms
57,384 KB
testcase_37 AC 42 ms
58,064 KB
testcase_38 AC 41 ms
58,108 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