結果

問題 No.537 ユーザーID
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 00:24:37
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 427 bytes
コンパイル時間 3,019 ms
コンパイル使用メモリ 75,264 KB
実行使用メモリ 61,448 KB
最終ジャッジ日時 2024-11-06 18:26:22
合計ジャッジ時間 8,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
60,952 KB
testcase_01 AC 135 ms
54,348 KB
testcase_02 AC 137 ms
53,860 KB
testcase_03 AC 136 ms
54,052 KB
testcase_04 AC 129 ms
53,920 KB
testcase_05 AC 131 ms
53,772 KB
testcase_06 AC 129 ms
53,868 KB
testcase_07 AC 130 ms
54,216 KB
testcase_08 AC 130 ms
54,284 KB
testcase_09 AC 127 ms
54,056 KB
testcase_10 AC 130 ms
54,000 KB
testcase_11 AC 130 ms
53,900 KB
testcase_12 AC 137 ms
54,124 KB
testcase_13 AC 132 ms
53,852 KB
testcase_14 AC 116 ms
52,612 KB
testcase_15 AC 129 ms
54,260 KB
testcase_16 AC 131 ms
53,888 KB
testcase_17 AC 132 ms
53,824 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		long n = sc.nextLong();
		Set<String> set = new HashSet<>();
		for (long i=1; i<=n; i++) {
			if (n%i==0) {
				StringBuilder sb = new StringBuilder();
				sb.append(String.valueOf(i));
				sb.append(String.valueOf(n/i));
				set.add(sb.toString());
			}
		}
		System.out.println(set.size());
	}
}
0