結果

問題 No.537 ユーザーID
ユーザー tentententen
提出日時 2022-09-13 10:48:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 1,266 bytes
コンパイル時間 3,136 ms
コンパイル使用メモリ 91,344 KB
実行使用メモリ 42,456 KB
最終ジャッジ日時 2024-05-07 18:56:42
合計ジャッジ時間 5,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,388 KB
testcase_01 AC 56 ms
37,256 KB
testcase_02 AC 53 ms
37,132 KB
testcase_03 AC 53 ms
37,116 KB
testcase_04 AC 53 ms
37,036 KB
testcase_05 AC 54 ms
37,080 KB
testcase_06 AC 55 ms
37,168 KB
testcase_07 AC 54 ms
36,992 KB
testcase_08 AC 53 ms
36,992 KB
testcase_09 AC 51 ms
36,976 KB
testcase_10 AC 53 ms
36,864 KB
testcase_11 AC 53 ms
37,036 KB
testcase_12 AC 53 ms
36,724 KB
testcase_13 AC 54 ms
37,496 KB
testcase_14 AC 53 ms
37,260 KB
testcase_15 AC 52 ms
37,168 KB
testcase_16 AC 53 ms
37,092 KB
testcase_17 AC 52 ms
37,012 KB
testcase_18 AC 87 ms
39,840 KB
testcase_19 AC 80 ms
38,760 KB
testcase_20 AC 77 ms
38,912 KB
testcase_21 AC 90 ms
39,644 KB
testcase_22 AC 86 ms
40,088 KB
testcase_23 AC 94 ms
40,156 KB
testcase_24 AC 74 ms
37,888 KB
testcase_25 AC 95 ms
39,868 KB
testcase_26 AC 95 ms
39,996 KB
testcase_27 AC 89 ms
39,800 KB
testcase_28 AC 117 ms
41,248 KB
testcase_29 AC 138 ms
42,292 KB
testcase_30 AC 129 ms
42,456 KB
testcase_31 AC 69 ms
39,156 KB
testcase_32 AC 84 ms
38,348 KB
testcase_33 AC 136 ms
42,192 KB
testcase_34 AC 91 ms
40,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        HashSet<String> ans = new HashSet<>();
        for (int i = 1; i <= Math.sqrt(n); i++) {
            if (n % i == 0) {
                ans.add(String.valueOf(n / i) + String.valueOf(i));
                ans.add(String.valueOf(i) + String.valueOf(n / i));
            }
        }
        System.out.println(ans.size());
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0