結果

問題 No.537 ユーザーID
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-21 22:20:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 2,888 ms
コンパイル使用メモリ 78,348 KB
実行使用メモリ 46,396 KB
最終ジャッジ日時 2024-11-21 07:35:52
合計ジャッジ時間 10,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
43,124 KB
testcase_01 AC 197 ms
43,088 KB
testcase_02 AC 193 ms
43,104 KB
testcase_03 AC 182 ms
43,188 KB
testcase_04 AC 190 ms
43,112 KB
testcase_05 AC 194 ms
42,980 KB
testcase_06 AC 191 ms
43,108 KB
testcase_07 AC 185 ms
43,188 KB
testcase_08 AC 184 ms
43,164 KB
testcase_09 AC 197 ms
43,136 KB
testcase_10 AC 186 ms
43,244 KB
testcase_11 AC 188 ms
43,260 KB
testcase_12 AC 186 ms
43,164 KB
testcase_13 AC 199 ms
43,220 KB
testcase_14 AC 192 ms
43,056 KB
testcase_15 AC 196 ms
43,188 KB
testcase_16 AC 189 ms
43,148 KB
testcase_17 AC 185 ms
43,216 KB
testcase_18 AC 210 ms
43,508 KB
testcase_19 AC 206 ms
43,292 KB
testcase_20 AC 198 ms
43,048 KB
testcase_21 AC 207 ms
43,236 KB
testcase_22 AC 212 ms
43,096 KB
testcase_23 AC 220 ms
43,348 KB
testcase_24 AC 196 ms
43,212 KB
testcase_25 AC 209 ms
43,108 KB
testcase_26 AC 214 ms
43,372 KB
testcase_27 AC 207 ms
43,368 KB
testcase_28 AC 253 ms
45,796 KB
testcase_29 AC 279 ms
45,960 KB
testcase_30 AC 268 ms
45,876 KB
testcase_31 AC 204 ms
43,384 KB
testcase_32 AC 208 ms
43,216 KB
testcase_33 AC 279 ms
46,396 KB
testcase_34 AC 214 ms
43,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	static public void main(String[]args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		solve(n);
	}

	static void solve(long n) {
		HashSet<String> hs = new HashSet();
		for(int i=1; i<=Math.sqrt(n); i++) {
			if(n % i == 0) {
				long j = n / i;
				hs.add(i+""+j);
				hs.add(j+""+i);
			}
		}
		System.out.println(hs.size());
	}
}
0