結果

問題 No.537 ユーザーID
ユーザー YamaKasaYamaKasa
提出日時 2018-06-04 21:08:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 2,408 ms
コンパイル使用メモリ 77,016 KB
実行使用メモリ 44,976 KB
最終ジャッジ日時 2024-06-30 09:46:47
合計ジャッジ時間 9,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,436 KB
testcase_01 AC 115 ms
40,296 KB
testcase_02 AC 128 ms
41,108 KB
testcase_03 AC 131 ms
41,176 KB
testcase_04 AC 127 ms
41,456 KB
testcase_05 AC 128 ms
41,792 KB
testcase_06 AC 127 ms
41,288 KB
testcase_07 AC 128 ms
41,356 KB
testcase_08 AC 111 ms
40,216 KB
testcase_09 AC 113 ms
40,976 KB
testcase_10 AC 125 ms
41,280 KB
testcase_11 AC 129 ms
41,316 KB
testcase_12 AC 127 ms
41,412 KB
testcase_13 AC 124 ms
41,316 KB
testcase_14 AC 134 ms
41,432 KB
testcase_15 AC 131 ms
41,460 KB
testcase_16 AC 122 ms
41,008 KB
testcase_17 AC 125 ms
41,160 KB
testcase_18 AC 163 ms
42,864 KB
testcase_19 AC 150 ms
41,284 KB
testcase_20 AC 143 ms
41,612 KB
testcase_21 AC 163 ms
42,660 KB
testcase_22 AC 168 ms
42,704 KB
testcase_23 AC 159 ms
42,924 KB
testcase_24 AC 143 ms
41,464 KB
testcase_25 AC 173 ms
42,660 KB
testcase_26 AC 173 ms
42,968 KB
testcase_27 AC 165 ms
42,756 KB
testcase_28 AC 170 ms
44,404 KB
testcase_29 AC 212 ms
44,976 KB
testcase_30 AC 195 ms
44,668 KB
testcase_31 AC 172 ms
42,948 KB
testcase_32 AC 168 ms
42,916 KB
testcase_33 AC 197 ms
44,460 KB
testcase_34 AC 168 ms
43,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long N = scan.nextLong();
		scan.close();
		Set<String> hash_set = new HashSet<String>();
		int k = (int)Math.sqrt(N);
		for(int i = 1; i <= k; i++) {
			if(N % i == 0) {
				long t = N / i;
				String s1 = Integer.toString(i) + Long.toString(t);
				String s2 = Long.toString(t) + Integer.toString(i);
				hash_set.add(s1);
				hash_set.add(s2);
			}
		}
		System.out.println(hash_set.size());
	}
}
0