結果
問題 | No.1452 XOR×OR |
ユーザー | あかりき |
提出日時 | 2021-04-13 01:44:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 711 bytes |
コンパイル時間 | 213 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 87,808 KB |
最終ジャッジ日時 | 2024-06-28 20:27:56 |
合計ジャッジ時間 | 9,436 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
81,664 KB |
testcase_01 | AC | 243 ms
76,900 KB |
testcase_02 | WA | - |
testcase_03 | AC | 143 ms
76,020 KB |
testcase_04 | AC | 142 ms
76,380 KB |
testcase_05 | AC | 145 ms
76,416 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
n=int(input()) d=[] for i in range(1,int(n**0.5)+2): if n%i==0: if i*i<=n: d.append(i) ans=0 for i in range(len(d)): x=format(d[i],'016b') for j in range(2**16): x1=[] x2=[] b=format(j,'016b') for j2 in range(16): if x[j2]=='0': if b[j2]=='0': x1.append(0) x2.append(0) else: x1.append(1) x2.append(1) else: if b[j2]=='0': x1.append(0) x2.append(1) else: x1.append(1) x2.append(0) X1=0 X2=0 x1.reverse() x2.reverse() for j2 in range(16): X1+=x1[j2]*2**j2 X2+=x2[j2]*2**j2 if X1|X2==n//d[i]: ans+=1 print(ans//2)