結果

問題 No.537 ユーザーID
ユーザー GrenacheGrenache
提出日時 2017-06-30 22:26:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 3,721 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 57,668 KB
最終ジャッジ日時 2024-10-04 19:31:49
合計ジャッジ時間 9,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,088 KB
testcase_01 AC 133 ms
54,080 KB
testcase_02 AC 133 ms
53,872 KB
testcase_03 AC 124 ms
53,988 KB
testcase_04 AC 100 ms
52,820 KB
testcase_05 AC 112 ms
54,044 KB
testcase_06 AC 123 ms
52,796 KB
testcase_07 AC 128 ms
53,984 KB
testcase_08 AC 121 ms
53,256 KB
testcase_09 AC 116 ms
54,244 KB
testcase_10 AC 112 ms
53,932 KB
testcase_11 AC 121 ms
54,072 KB
testcase_12 AC 107 ms
52,800 KB
testcase_13 AC 121 ms
53,848 KB
testcase_14 AC 122 ms
53,856 KB
testcase_15 AC 133 ms
53,984 KB
testcase_16 AC 134 ms
53,896 KB
testcase_17 AC 123 ms
54,168 KB
testcase_18 AC 143 ms
55,332 KB
testcase_19 AC 126 ms
53,332 KB
testcase_20 AC 133 ms
53,464 KB
testcase_21 AC 147 ms
55,452 KB
testcase_22 AC 154 ms
55,500 KB
testcase_23 AC 167 ms
55,616 KB
testcase_24 AC 136 ms
54,312 KB
testcase_25 AC 173 ms
55,304 KB
testcase_26 AC 173 ms
55,292 KB
testcase_27 AC 170 ms
55,284 KB
testcase_28 AC 189 ms
54,712 KB
testcase_29 AC 214 ms
57,668 KB
testcase_30 AC 204 ms
57,172 KB
testcase_31 AC 167 ms
55,552 KB
testcase_32 AC 175 ms
55,364 KB
testcase_33 AC 171 ms
56,908 KB
testcase_34 AC 142 ms
55,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder537 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long n = sc.nextLong();

		Set<String> hs = new HashSet<>();
		for (long i = 1; i * i <= n; i++) {
			if (n % i == 0) {
				String tmp = Long.toString(i) + Long.toString(n / i);
				hs.add(tmp);
				tmp = Long.toString(n / i) + Long.toString(i);
				hs.add(tmp);
			}
		}

		pr.println(hs.size());
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0