結果

問題 No.537 ユーザーID
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 00:13:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 6,059 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 58,000 KB
最終ジャッジ日時 2024-11-06 18:09:45
合計ジャッジ時間 9,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,884 KB
testcase_01 AC 131 ms
54,256 KB
testcase_02 AC 133 ms
54,296 KB
testcase_03 WA -
testcase_04 AC 135 ms
53,944 KB
testcase_05 WA -
testcase_06 AC 134 ms
54,164 KB
testcase_07 AC 135 ms
54,036 KB
testcase_08 AC 134 ms
53,984 KB
testcase_09 AC 133 ms
54,324 KB
testcase_10 AC 136 ms
53,964 KB
testcase_11 AC 135 ms
54,028 KB
testcase_12 AC 134 ms
54,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 134 ms
54,080 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 158 ms
54,208 KB
testcase_19 AC 153 ms
54,052 KB
testcase_20 AC 154 ms
54,224 KB
testcase_21 AC 152 ms
54,408 KB
testcase_22 AC 158 ms
54,136 KB
testcase_23 AC 156 ms
54,264 KB
testcase_24 AC 143 ms
54,216 KB
testcase_25 AC 159 ms
54,156 KB
testcase_26 WA -
testcase_27 AC 155 ms
54,300 KB
testcase_28 AC 181 ms
55,684 KB
testcase_29 AC 206 ms
58,000 KB
testcase_30 AC 194 ms
55,668 KB
testcase_31 AC 154 ms
54,076 KB
testcase_32 AC 150 ms
54,436 KB
testcase_33 WA -
testcase_34 AC 160 ms
54,376 KB
権限があれば一括ダウンロードができます

ソースコード

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<=Math.sqrt(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());
				set.add(sb.reverse().toString());
			}
		}
		System.out.println(set.size());
	}
}
0