結果

問題 No.537 ユーザーID
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-29 20:26:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 3,820 ms
コンパイル使用メモリ 76,868 KB
実行使用メモリ 47,604 KB
最終ジャッジ日時 2024-05-01 22:22:10
合計ジャッジ時間 12,804 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
42,988 KB
testcase_01 AC 196 ms
43,264 KB
testcase_02 AC 188 ms
42,980 KB
testcase_03 AC 193 ms
43,100 KB
testcase_04 AC 190 ms
42,996 KB
testcase_05 AC 189 ms
43,088 KB
testcase_06 AC 191 ms
43,200 KB
testcase_07 AC 189 ms
42,876 KB
testcase_08 AC 186 ms
43,212 KB
testcase_09 AC 188 ms
42,920 KB
testcase_10 AC 188 ms
42,948 KB
testcase_11 AC 185 ms
42,964 KB
testcase_12 AC 184 ms
43,008 KB
testcase_13 AC 193 ms
43,224 KB
testcase_14 AC 186 ms
43,116 KB
testcase_15 AC 197 ms
43,272 KB
testcase_16 AC 187 ms
43,236 KB
testcase_17 AC 189 ms
43,336 KB
testcase_18 AC 217 ms
43,304 KB
testcase_19 AC 211 ms
43,224 KB
testcase_20 AC 219 ms
43,184 KB
testcase_21 AC 214 ms
43,312 KB
testcase_22 AC 219 ms
43,492 KB
testcase_23 AC 221 ms
43,528 KB
testcase_24 AC 196 ms
43,160 KB
testcase_25 AC 217 ms
43,400 KB
testcase_26 AC 208 ms
43,096 KB
testcase_27 AC 216 ms
43,188 KB
testcase_28 AC 259 ms
45,384 KB
testcase_29 AC 283 ms
46,288 KB
testcase_30 AC 277 ms
46,396 KB
testcase_31 AC 217 ms
43,260 KB
testcase_32 AC 204 ms
43,432 KB
testcase_33 AC 271 ms
47,604 KB
testcase_34 AC 221 ms
43,208 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