結果

問題 No.537 ユーザーID
ユーザー samplelpmassamplelpmas
提出日時 2017-07-02 08:04:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 77,636 KB
実行使用メモリ 57,192 KB
最終ジャッジ日時 2024-10-05 06:44:17
合計ジャッジ時間 7,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,804 KB
testcase_01 AC 104 ms
52,616 KB
testcase_02 AC 114 ms
54,152 KB
testcase_03 AC 114 ms
53,640 KB
testcase_04 AC 122 ms
53,824 KB
testcase_05 AC 119 ms
53,952 KB
testcase_06 AC 105 ms
52,760 KB
testcase_07 AC 117 ms
53,812 KB
testcase_08 AC 118 ms
53,808 KB
testcase_09 AC 113 ms
53,932 KB
testcase_10 AC 109 ms
52,700 KB
testcase_11 AC 119 ms
53,956 KB
testcase_12 AC 108 ms
52,896 KB
testcase_13 AC 116 ms
53,804 KB
testcase_14 AC 120 ms
53,820 KB
testcase_15 AC 116 ms
53,784 KB
testcase_16 AC 111 ms
53,660 KB
testcase_17 AC 102 ms
52,892 KB
testcase_18 AC 144 ms
54,924 KB
testcase_19 AC 129 ms
54,044 KB
testcase_20 AC 134 ms
53,748 KB
testcase_21 AC 131 ms
55,076 KB
testcase_22 AC 148 ms
54,800 KB
testcase_23 AC 163 ms
54,968 KB
testcase_24 AC 128 ms
54,044 KB
testcase_25 AC 146 ms
54,960 KB
testcase_26 AC 138 ms
54,824 KB
testcase_27 AC 144 ms
55,000 KB
testcase_28 AC 162 ms
55,608 KB
testcase_29 AC 186 ms
56,000 KB
testcase_30 AC 172 ms
55,848 KB
testcase_31 AC 132 ms
54,776 KB
testcase_32 AC 128 ms
54,776 KB
testcase_33 AC 178 ms
57,192 KB
testcase_34 AC 158 ms
55,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        long N = sc.nextLong();

        Set<String> hs = new HashSet<String>();

        for (long i = 1; i * i <= N; i++) {

            if (N % i == 0) {

                String factorStr1 = Long.toString(i);
                String factorStr2 = Long.toString(N / i);

                hs.add(factorStr1 + factorStr2);
                hs.add(factorStr2 + factorStr1);

            }

        }

        System.out.println(hs.size());

    }

}
0