結果

問題 No.537 ユーザーID
ユーザー htensaihtensai
提出日時 2019-12-07 17:15:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 2,726 ms
コンパイル使用メモリ 79,292 KB
実行使用メモリ 45,344 KB
最終ジャッジ日時 2024-12-26 00:36:56
合計ジャッジ時間 10,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
42,004 KB
testcase_01 AC 143 ms
42,316 KB
testcase_02 AC 147 ms
41,924 KB
testcase_03 AC 162 ms
42,144 KB
testcase_04 AC 150 ms
42,000 KB
testcase_05 AC 164 ms
42,120 KB
testcase_06 AC 147 ms
41,896 KB
testcase_07 AC 161 ms
42,120 KB
testcase_08 AC 163 ms
42,332 KB
testcase_09 AC 153 ms
42,240 KB
testcase_10 AC 145 ms
42,172 KB
testcase_11 AC 143 ms
42,336 KB
testcase_12 AC 148 ms
42,264 KB
testcase_13 AC 141 ms
42,368 KB
testcase_14 AC 156 ms
42,308 KB
testcase_15 AC 189 ms
42,364 KB
testcase_16 AC 153 ms
42,200 KB
testcase_17 AC 165 ms
42,304 KB
testcase_18 AC 180 ms
42,516 KB
testcase_19 AC 176 ms
42,372 KB
testcase_20 AC 175 ms
42,368 KB
testcase_21 AC 177 ms
42,340 KB
testcase_22 AC 182 ms
42,536 KB
testcase_23 AC 189 ms
42,352 KB
testcase_24 AC 162 ms
42,144 KB
testcase_25 AC 179 ms
42,228 KB
testcase_26 AC 184 ms
42,384 KB
testcase_27 AC 181 ms
42,580 KB
testcase_28 AC 211 ms
43,876 KB
testcase_29 AC 235 ms
44,700 KB
testcase_30 AC 232 ms
44,352 KB
testcase_31 AC 182 ms
42,948 KB
testcase_32 AC 170 ms
42,564 KB
testcase_33 AC 234 ms
45,344 KB
testcase_34 AC 188 ms
42,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        HashSet<String> set = new HashSet<>();
        for (long i = 1; i <= Math.sqrt(n); i++) {
            if (n % i == 0) {
                set.add((n / i) + "" + i);
                set.add(i + "" + (n / i));
            }
        }
        System.out.println(set.size());
    }
}
0