結果

問題 No.537 ユーザーID
ユーザー htensaihtensai
提出日時 2019-12-07 17:15:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 77,164 KB
実行使用メモリ 45,640 KB
最終ジャッジ日時 2024-06-07 17:09:49
合計ジャッジ時間 10,005 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,192 KB
testcase_01 AC 157 ms
42,304 KB
testcase_02 AC 155 ms
42,212 KB
testcase_03 AC 150 ms
42,340 KB
testcase_04 AC 156 ms
41,920 KB
testcase_05 AC 158 ms
42,280 KB
testcase_06 AC 157 ms
42,364 KB
testcase_07 AC 141 ms
41,928 KB
testcase_08 AC 158 ms
42,404 KB
testcase_09 AC 155 ms
42,308 KB
testcase_10 AC 140 ms
41,780 KB
testcase_11 AC 153 ms
42,048 KB
testcase_12 AC 154 ms
42,048 KB
testcase_13 AC 141 ms
41,992 KB
testcase_14 AC 152 ms
42,072 KB
testcase_15 AC 154 ms
42,268 KB
testcase_16 AC 155 ms
42,336 KB
testcase_17 AC 158 ms
42,272 KB
testcase_18 AC 167 ms
42,488 KB
testcase_19 AC 175 ms
42,328 KB
testcase_20 AC 182 ms
42,380 KB
testcase_21 AC 177 ms
42,364 KB
testcase_22 AC 180 ms
42,640 KB
testcase_23 AC 187 ms
42,612 KB
testcase_24 AC 166 ms
42,324 KB
testcase_25 AC 189 ms
42,488 KB
testcase_26 AC 184 ms
42,344 KB
testcase_27 AC 180 ms
42,560 KB
testcase_28 AC 217 ms
44,492 KB
testcase_29 AC 245 ms
44,264 KB
testcase_30 AC 236 ms
44,304 KB
testcase_31 AC 182 ms
42,568 KB
testcase_32 AC 179 ms
42,468 KB
testcase_33 AC 243 ms
45,640 KB
testcase_34 AC 210 ms
42,468 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