結果

問題 No.537 ユーザーID
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-08 21:21:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 46,904 KB
最終ジャッジ日時 2024-10-06 20:05:04
合計ジャッジ時間 10,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
42,476 KB
testcase_01 AC 166 ms
42,700 KB
testcase_02 AC 164 ms
42,384 KB
testcase_03 AC 165 ms
42,388 KB
testcase_04 AC 165 ms
42,308 KB
testcase_05 AC 164 ms
42,492 KB
testcase_06 AC 166 ms
42,672 KB
testcase_07 AC 166 ms
42,484 KB
testcase_08 AC 166 ms
42,400 KB
testcase_09 AC 163 ms
42,428 KB
testcase_10 AC 164 ms
42,356 KB
testcase_11 AC 165 ms
42,368 KB
testcase_12 AC 163 ms
42,692 KB
testcase_13 AC 162 ms
42,316 KB
testcase_14 AC 166 ms
42,572 KB
testcase_15 AC 166 ms
42,672 KB
testcase_16 AC 163 ms
42,388 KB
testcase_17 AC 166 ms
42,456 KB
testcase_18 AC 188 ms
42,816 KB
testcase_19 AC 192 ms
42,784 KB
testcase_20 AC 180 ms
42,612 KB
testcase_21 AC 206 ms
43,024 KB
testcase_22 AC 209 ms
42,832 KB
testcase_23 AC 206 ms
42,672 KB
testcase_24 AC 175 ms
42,956 KB
testcase_25 AC 209 ms
43,164 KB
testcase_26 AC 207 ms
43,120 KB
testcase_27 AC 198 ms
43,028 KB
testcase_28 AC 235 ms
44,276 KB
testcase_29 AC 265 ms
46,232 KB
testcase_30 AC 266 ms
45,340 KB
testcase_31 AC 206 ms
42,680 KB
testcase_32 AC 198 ms
42,924 KB
testcase_33 AC 262 ms
46,904 KB
testcase_34 AC 201 ms
42,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long N = sc.nextLong();
    HashSet<String> set = new HashSet<String>();
    for(long i = 1; i * i <= N; i++) {
      if(N % i == 0) {
        String s = "";
        s += i;
        s += (N / i);
        set.add(s);
        String t = "";
        t += (N / i);
        t += i;
        set.add(t);
      }
    }
    System.out.println(set.size());
  }
}
0