結果

問題 No.537 ユーザーID
ユーザー taku-techtaku-tech
提出日時 2021-05-21 02:54:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 3,828 ms
コンパイル使用メモリ 78,208 KB
実行使用メモリ 57,836 KB
最終ジャッジ日時 2024-10-10 07:26:39
合計ジャッジ時間 11,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
54,784 KB
testcase_01 AC 170 ms
54,892 KB
testcase_02 AC 164 ms
54,636 KB
testcase_03 AC 161 ms
54,612 KB
testcase_04 AC 162 ms
54,860 KB
testcase_05 AC 162 ms
55,016 KB
testcase_06 AC 164 ms
55,064 KB
testcase_07 AC 167 ms
54,868 KB
testcase_08 AC 168 ms
54,944 KB
testcase_09 AC 168 ms
54,824 KB
testcase_10 AC 164 ms
54,944 KB
testcase_11 AC 166 ms
54,872 KB
testcase_12 AC 168 ms
54,876 KB
testcase_13 AC 169 ms
54,892 KB
testcase_14 AC 165 ms
54,900 KB
testcase_15 AC 168 ms
55,028 KB
testcase_16 AC 169 ms
54,836 KB
testcase_17 AC 171 ms
54,784 KB
testcase_18 AC 193 ms
54,932 KB
testcase_19 AC 183 ms
54,768 KB
testcase_20 AC 182 ms
54,660 KB
testcase_21 AC 184 ms
55,000 KB
testcase_22 AC 187 ms
55,048 KB
testcase_23 AC 198 ms
55,084 KB
testcase_24 AC 177 ms
54,768 KB
testcase_25 AC 194 ms
55,272 KB
testcase_26 AC 194 ms
54,880 KB
testcase_27 AC 193 ms
54,924 KB
testcase_28 AC 233 ms
56,352 KB
testcase_29 AC 256 ms
56,524 KB
testcase_30 AC 253 ms
56,168 KB
testcase_31 AC 188 ms
54,744 KB
testcase_32 AC 185 ms
55,068 KB
testcase_33 AC 253 ms
57,836 KB
testcase_34 AC 200 ms
54,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package user_id;

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

public class UserId02 {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);

		long N = sc.nextLong();
		Set<String> X = new HashSet<>();

		for(long i = 1; i <= Math.sqrt(N); i++) {
			if(N % i == 0) {
				X.add(i + "" + (N / i));
				X.add((N / i) + "" + i);
			}
		}
		System.out.println(X.size());
//		sc.close();
	}
}
0