結果

問題 No.537 ユーザーID
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 19:54:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 3,965 ms
コンパイル使用メモリ 75,812 KB
実行使用メモリ 45,092 KB
最終ジャッジ日時 2024-11-22 16:51:41
合計ジャッジ時間 9,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,416 KB
testcase_01 AC 124 ms
41,260 KB
testcase_02 AC 126 ms
40,960 KB
testcase_03 AC 124 ms
41,220 KB
testcase_04 AC 120 ms
40,796 KB
testcase_05 AC 128 ms
40,800 KB
testcase_06 AC 128 ms
40,956 KB
testcase_07 AC 128 ms
41,208 KB
testcase_08 AC 120 ms
40,640 KB
testcase_09 AC 126 ms
41,160 KB
testcase_10 AC 112 ms
40,008 KB
testcase_11 AC 115 ms
39,936 KB
testcase_12 AC 125 ms
40,892 KB
testcase_13 AC 111 ms
39,896 KB
testcase_14 AC 115 ms
39,792 KB
testcase_15 AC 128 ms
41,036 KB
testcase_16 AC 127 ms
41,044 KB
testcase_17 AC 124 ms
41,340 KB
testcase_18 AC 156 ms
41,560 KB
testcase_19 AC 145 ms
41,488 KB
testcase_20 AC 146 ms
41,408 KB
testcase_21 AC 155 ms
41,600 KB
testcase_22 AC 158 ms
41,488 KB
testcase_23 AC 164 ms
41,936 KB
testcase_24 AC 137 ms
41,400 KB
testcase_25 AC 159 ms
41,696 KB
testcase_26 AC 156 ms
41,532 KB
testcase_27 AC 156 ms
41,708 KB
testcase_28 AC 178 ms
43,616 KB
testcase_29 AC 204 ms
44,064 KB
testcase_30 AC 200 ms
45,092 KB
testcase_31 AC 155 ms
41,768 KB
testcase_32 AC 152 ms
41,588 KB
testcase_33 AC 196 ms
44,616 KB
testcase_34 AC 166 ms
41,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.HashSet;
import java.util.Scanner;
public class Con537 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		long n = s.nextLong();
		s.close();

		HashSet<String> id = new HashSet<>();
		for(long i = 1;i <= Math.sqrt(n);i++){
			if(n % i == 0){
				String a = String.valueOf(i);
				String b = String.valueOf(n / i);
				id.add(a.concat(b));
				id.add(b.concat(a));
			}
		}
		System.out.println(id.size());

	}

}
0