結果

問題 No.1452 XOR×OR
ユーザー tentententen
提出日時 2021-04-13 08:31:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,373 bytes
コンパイル時間 2,545 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 37,300 KB
最終ジャッジ日時 2024-07-02 15:43:45
合計ジャッジ時間 5,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,988 KB
testcase_01 AC 53 ms
36,960 KB
testcase_02 AC 52 ms
37,064 KB
testcase_03 AC 52 ms
36,848 KB
testcase_04 AC 53 ms
37,152 KB
testcase_05 AC 52 ms
36,780 KB
testcase_06 AC 56 ms
37,140 KB
testcase_07 AC 55 ms
37,152 KB
testcase_08 AC 54 ms
37,244 KB
testcase_09 AC 54 ms
37,148 KB
testcase_10 AC 53 ms
37,244 KB
testcase_11 AC 54 ms
37,156 KB
testcase_12 AC 55 ms
37,084 KB
testcase_13 AC 54 ms
36,988 KB
testcase_14 AC 53 ms
36,800 KB
testcase_15 AC 54 ms
36,976 KB
testcase_16 AC 52 ms
37,136 KB
testcase_17 AC 52 ms
37,036 KB
testcase_18 AC 52 ms
37,152 KB
testcase_19 AC 52 ms
37,144 KB
testcase_20 AC 54 ms
37,196 KB
testcase_21 AC 53 ms
37,300 KB
testcase_22 AC 54 ms
37,192 KB
testcase_23 AC 52 ms
37,260 KB
testcase_24 AC 53 ms
36,976 KB
testcase_25 AC 53 ms
37,132 KB
testcase_26 AC 52 ms
36,876 KB
testcase_27 AC 53 ms
37,124 KB
testcase_28 AC 52 ms
37,140 KB
testcase_29 AC 53 ms
37,052 KB
testcase_30 AC 53 ms
36,892 KB
testcase_31 AC 52 ms
36,872 KB
testcase_32 AC 53 ms
37,120 KB
testcase_33 AC 53 ms
36,796 KB
testcase_34 AC 53 ms
37,140 KB
testcase_35 AC 53 ms
37,196 KB
testcase_36 AC 52 ms
36,904 KB
testcase_37 AC 52 ms
36,892 KB
testcase_38 AC 52 ms
37,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long ans = 0;
        for (int i = 1; i <= Math.sqrt(n); i++) {
            if (n % i == 0) {
                ans += getAns(i, n / i);
            }
        }
        System.out.println(ans);
    }
    
    static long getAns(int x, int y) {
        long ans = 1;
        while (x > 0 && y > 0) {
            int modx = x % 2;
            int mody = y % 2;
            if (modx == 1 && mody == 1) {
                ans *= 2;
            } else if (modx == 1 && mody == 0) {
                ans = 0;
            }
            x >>= 1;
            y >>= 1;
        }
        return ans / 2;
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0