結果

問題 No.537 ユーザーID
ユーザー mosmos_21mosmos_21
提出日時 2017-06-30 23:47:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 83,308 KB
実行使用メモリ 45,280 KB
最終ジャッジ日時 2024-10-04 21:50:23
合計ジャッジ時間 7,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,292 KB
testcase_01 AC 104 ms
41,020 KB
testcase_02 AC 116 ms
41,200 KB
testcase_03 AC 115 ms
41,156 KB
testcase_04 AC 105 ms
41,236 KB
testcase_05 AC 104 ms
41,248 KB
testcase_06 AC 113 ms
41,588 KB
testcase_07 AC 116 ms
41,428 KB
testcase_08 AC 114 ms
41,036 KB
testcase_09 AC 110 ms
41,132 KB
testcase_10 AC 114 ms
41,336 KB
testcase_11 AC 111 ms
39,984 KB
testcase_12 AC 110 ms
41,004 KB
testcase_13 AC 113 ms
41,000 KB
testcase_14 AC 96 ms
41,128 KB
testcase_15 AC 100 ms
41,016 KB
testcase_16 AC 103 ms
41,212 KB
testcase_17 AC 103 ms
41,276 KB
testcase_18 AC 125 ms
41,872 KB
testcase_19 AC 126 ms
41,660 KB
testcase_20 AC 131 ms
41,312 KB
testcase_21 AC 136 ms
41,676 KB
testcase_22 AC 141 ms
41,492 KB
testcase_23 AC 145 ms
41,772 KB
testcase_24 AC 127 ms
41,576 KB
testcase_25 AC 145 ms
42,004 KB
testcase_26 AC 134 ms
41,724 KB
testcase_27 AC 144 ms
41,600 KB
testcase_28 AC 164 ms
43,432 KB
testcase_29 AC 186 ms
45,280 KB
testcase_30 AC 180 ms
44,420 KB
testcase_31 AC 123 ms
41,936 KB
testcase_32 AC 125 ms
41,596 KB
testcase_33 AC 183 ms
45,104 KB
testcase_34 AC 146 ms
41,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

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

public class Main {
    public static void main(String[] args){
       Scanner in = new Scanner(System.in);
       long n = in.nextLong();
       HashSet<String> set = new HashSet<>();
       for(int i = 1; i <= (int)Math.sqrt(n); i++){
           if(n % i == 0){
               set.add(String.valueOf(i) + String.valueOf(n / i));
               set.add(String.valueOf(n / i) + String.valueOf(i));
           }
       }
       System.out.println(set.size());
    }
}
0