結果

問題 No.537 ユーザーID
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-09-07 21:15:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 3,435 ms
コンパイル使用メモリ 75,224 KB
実行使用メモリ 48,644 KB
最終ジャッジ日時 2024-11-07 11:11:00
合計ジャッジ時間 9,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,212 KB
testcase_01 AC 117 ms
41,504 KB
testcase_02 AC 120 ms
41,288 KB
testcase_03 AC 121 ms
41,420 KB
testcase_04 AC 105 ms
39,892 KB
testcase_05 AC 119 ms
41,468 KB
testcase_06 AC 118 ms
41,112 KB
testcase_07 AC 120 ms
41,324 KB
testcase_08 AC 107 ms
40,860 KB
testcase_09 AC 118 ms
41,304 KB
testcase_10 AC 120 ms
41,380 KB
testcase_11 AC 108 ms
40,236 KB
testcase_12 AC 118 ms
41,372 KB
testcase_13 AC 108 ms
39,980 KB
testcase_14 AC 121 ms
40,976 KB
testcase_15 AC 118 ms
41,160 KB
testcase_16 AC 107 ms
40,204 KB
testcase_17 AC 120 ms
40,936 KB
testcase_18 AC 156 ms
41,624 KB
testcase_19 AC 137 ms
41,196 KB
testcase_20 AC 134 ms
41,184 KB
testcase_21 AC 148 ms
41,408 KB
testcase_22 AC 152 ms
41,616 KB
testcase_23 AC 170 ms
42,108 KB
testcase_24 AC 132 ms
41,528 KB
testcase_25 AC 167 ms
41,812 KB
testcase_26 AC 164 ms
41,956 KB
testcase_27 AC 147 ms
41,788 KB
testcase_28 AC 212 ms
45,764 KB
testcase_29 AC 245 ms
48,644 KB
testcase_30 AC 242 ms
48,176 KB
testcase_31 AC 158 ms
42,068 KB
testcase_32 AC 153 ms
41,772 KB
testcase_33 AC 227 ms
46,764 KB
testcase_34 AC 172 ms
42,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.Set;

import static java.lang.System.in;

public class No537 {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        long N = Long.parseLong(reader.readLine());

        Set set = new HashSet();

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

                set.add(String.format("%d%d", i, (N / i)));
                set.add(String.format("%d%d", (N / i), i));
            }
        }

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