結果

問題 No.537 ユーザーID
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 00:28:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 75,336 KB
実行使用メモリ 45,680 KB
最終ジャッジ日時 2024-11-06 18:36:02
合計ジャッジ時間 8,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,612 KB
testcase_01 AC 135 ms
41,564 KB
testcase_02 AC 136 ms
41,440 KB
testcase_03 AC 136 ms
41,556 KB
testcase_04 AC 135 ms
41,484 KB
testcase_05 AC 135 ms
41,188 KB
testcase_06 AC 134 ms
41,440 KB
testcase_07 AC 138 ms
41,560 KB
testcase_08 AC 134 ms
41,552 KB
testcase_09 AC 136 ms
41,540 KB
testcase_10 AC 139 ms
41,856 KB
testcase_11 AC 136 ms
41,712 KB
testcase_12 AC 135 ms
41,576 KB
testcase_13 AC 138 ms
41,580 KB
testcase_14 AC 134 ms
41,704 KB
testcase_15 AC 135 ms
41,304 KB
testcase_16 AC 136 ms
41,552 KB
testcase_17 AC 137 ms
41,288 KB
testcase_18 AC 159 ms
41,644 KB
testcase_19 AC 138 ms
40,704 KB
testcase_20 AC 149 ms
41,544 KB
testcase_21 AC 155 ms
41,496 KB
testcase_22 AC 162 ms
41,444 KB
testcase_23 AC 163 ms
41,604 KB
testcase_24 AC 140 ms
41,504 KB
testcase_25 AC 164 ms
41,320 KB
testcase_26 AC 161 ms
41,676 KB
testcase_27 AC 159 ms
41,648 KB
testcase_28 AC 183 ms
43,152 KB
testcase_29 AC 208 ms
45,540 KB
testcase_30 AC 205 ms
44,892 KB
testcase_31 AC 158 ms
41,616 KB
testcase_32 AC 157 ms
41,996 KB
testcase_33 AC 213 ms
45,680 KB
testcase_34 AC 166 ms
41,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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