結果

問題 No.537 ユーザーID
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-29 20:26:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 3,563 ms
コンパイル使用メモリ 83,412 KB
実行使用メモリ 46,380 KB
最終ジャッジ日時 2024-11-22 05:34:19
合計ジャッジ時間 11,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
43,152 KB
testcase_01 AC 179 ms
43,008 KB
testcase_02 AC 189 ms
42,832 KB
testcase_03 AC 177 ms
43,096 KB
testcase_04 AC 184 ms
43,028 KB
testcase_05 AC 186 ms
43,096 KB
testcase_06 AC 190 ms
43,032 KB
testcase_07 AC 213 ms
43,184 KB
testcase_08 AC 178 ms
42,920 KB
testcase_09 AC 175 ms
42,968 KB
testcase_10 AC 183 ms
43,144 KB
testcase_11 AC 182 ms
43,028 KB
testcase_12 AC 175 ms
43,060 KB
testcase_13 AC 194 ms
43,008 KB
testcase_14 AC 175 ms
42,980 KB
testcase_15 AC 191 ms
43,132 KB
testcase_16 AC 177 ms
43,064 KB
testcase_17 AC 186 ms
42,908 KB
testcase_18 AC 197 ms
43,176 KB
testcase_19 AC 200 ms
43,364 KB
testcase_20 AC 199 ms
43,164 KB
testcase_21 AC 206 ms
43,060 KB
testcase_22 AC 207 ms
43,124 KB
testcase_23 AC 213 ms
43,364 KB
testcase_24 AC 192 ms
43,264 KB
testcase_25 AC 214 ms
43,216 KB
testcase_26 AC 198 ms
43,044 KB
testcase_27 AC 198 ms
43,208 KB
testcase_28 AC 232 ms
46,008 KB
testcase_29 AC 268 ms
46,000 KB
testcase_30 AC 267 ms
45,924 KB
testcase_31 AC 201 ms
43,120 KB
testcase_32 AC 214 ms
43,076 KB
testcase_33 AC 262 ms
46,380 KB
testcase_34 AC 217 ms
43,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class No537 {
    public static void main(String[] args) {
        long n = new Scanner(System.in).nextLong();
        long rootN = (long)Math.pow(n, 0.5);
        HashSet<String> hs = new HashSet<>();

        for(int i = 1; i <= rootN; i++) {
            if(n % i == 0) {
                hs.add(i + "" + (n / i));
                hs.add((n / i) + "" + i);
            }
        }

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