結果

問題 No.537 ユーザーID
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 19:54:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 3,733 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 44,796 KB
最終ジャッジ日時 2024-05-02 05:42:16
合計ジャッジ時間 10,497 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
40,756 KB
testcase_01 AC 137 ms
41,112 KB
testcase_02 AC 136 ms
41,040 KB
testcase_03 AC 133 ms
41,452 KB
testcase_04 AC 135 ms
41,132 KB
testcase_05 AC 138 ms
41,140 KB
testcase_06 AC 142 ms
41,220 KB
testcase_07 AC 143 ms
41,324 KB
testcase_08 AC 142 ms
41,136 KB
testcase_09 AC 137 ms
41,184 KB
testcase_10 AC 137 ms
41,320 KB
testcase_11 AC 136 ms
41,032 KB
testcase_12 AC 136 ms
41,252 KB
testcase_13 AC 136 ms
41,200 KB
testcase_14 AC 136 ms
41,552 KB
testcase_15 AC 137 ms
41,052 KB
testcase_16 AC 139 ms
41,036 KB
testcase_17 AC 135 ms
41,132 KB
testcase_18 AC 167 ms
41,708 KB
testcase_19 AC 159 ms
41,192 KB
testcase_20 AC 155 ms
41,208 KB
testcase_21 AC 166 ms
41,872 KB
testcase_22 AC 168 ms
41,420 KB
testcase_23 AC 175 ms
41,740 KB
testcase_24 AC 134 ms
41,024 KB
testcase_25 AC 172 ms
41,892 KB
testcase_26 AC 173 ms
41,536 KB
testcase_27 AC 166 ms
41,492 KB
testcase_28 AC 189 ms
43,580 KB
testcase_29 AC 218 ms
43,948 KB
testcase_30 AC 209 ms
44,052 KB
testcase_31 AC 163 ms
41,780 KB
testcase_32 AC 164 ms
41,712 KB
testcase_33 AC 216 ms
44,796 KB
testcase_34 AC 174 ms
41,692 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