結果

問題 No.537 ユーザーID
ユーザー tentententen
提出日時 2020-11-04 11:50:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 2,616 ms
コンパイル使用メモリ 87,116 KB
実行使用メモリ 47,668 KB
最終ジャッジ日時 2024-07-22 09:55:12
合計ジャッジ時間 11,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
43,116 KB
testcase_01 AC 191 ms
42,936 KB
testcase_02 AC 197 ms
43,084 KB
testcase_03 AC 205 ms
43,100 KB
testcase_04 AC 206 ms
42,952 KB
testcase_05 AC 197 ms
43,180 KB
testcase_06 AC 188 ms
43,084 KB
testcase_07 AC 207 ms
43,180 KB
testcase_08 AC 204 ms
42,952 KB
testcase_09 AC 185 ms
43,148 KB
testcase_10 AC 189 ms
43,244 KB
testcase_11 AC 206 ms
43,164 KB
testcase_12 AC 193 ms
43,136 KB
testcase_13 AC 192 ms
43,008 KB
testcase_14 AC 189 ms
42,924 KB
testcase_15 AC 200 ms
43,048 KB
testcase_16 AC 193 ms
42,928 KB
testcase_17 AC 198 ms
42,944 KB
testcase_18 AC 221 ms
43,148 KB
testcase_19 AC 200 ms
43,004 KB
testcase_20 AC 211 ms
43,336 KB
testcase_21 AC 194 ms
43,000 KB
testcase_22 AC 236 ms
43,340 KB
testcase_23 AC 220 ms
43,284 KB
testcase_24 AC 207 ms
43,044 KB
testcase_25 AC 220 ms
43,136 KB
testcase_26 AC 218 ms
43,332 KB
testcase_27 AC 220 ms
43,268 KB
testcase_28 AC 258 ms
45,660 KB
testcase_29 AC 285 ms
46,116 KB
testcase_30 AC 279 ms
47,668 KB
testcase_31 AC 192 ms
43,012 KB
testcase_32 AC 198 ms
43,152 KB
testcase_33 AC 289 ms
46,440 KB
testcase_34 AC 227 ms
43,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long x = sc.nextLong();
		HashSet<String> set = new HashSet<>();
		for (int i = 1; i <= Math.sqrt(x); i++) {
		    if (x % i == 0) {
		        set.add(i + "" + (x / i));
		        set.add((x / i) + "" + i);
		    }
		}
		System.out.println(set.size());
	}
}
0