結果

問題 No.537 ユーザーID
ユーザー uafr_csuafr_cs
提出日時 2017-10-28 17:39:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 2,412 ms
コンパイル使用メモリ 77,104 KB
実行使用メモリ 45,228 KB
最終ジャッジ日時 2024-11-22 03:43:45
合計ジャッジ時間 9,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,660 KB
testcase_01 AC 148 ms
42,116 KB
testcase_02 AC 151 ms
42,236 KB
testcase_03 AC 146 ms
42,016 KB
testcase_04 AC 159 ms
42,240 KB
testcase_05 AC 151 ms
42,204 KB
testcase_06 AC 149 ms
42,452 KB
testcase_07 AC 146 ms
42,316 KB
testcase_08 AC 148 ms
42,316 KB
testcase_09 AC 148 ms
42,188 KB
testcase_10 AC 148 ms
42,248 KB
testcase_11 AC 149 ms
42,360 KB
testcase_12 AC 152 ms
42,068 KB
testcase_13 AC 147 ms
42,292 KB
testcase_14 AC 147 ms
41,884 KB
testcase_15 AC 137 ms
41,920 KB
testcase_16 AC 144 ms
42,196 KB
testcase_17 AC 150 ms
42,252 KB
testcase_18 AC 162 ms
42,324 KB
testcase_19 AC 170 ms
42,160 KB
testcase_20 AC 166 ms
42,104 KB
testcase_21 AC 176 ms
42,540 KB
testcase_22 AC 164 ms
42,284 KB
testcase_23 AC 180 ms
42,404 KB
testcase_24 AC 161 ms
42,392 KB
testcase_25 AC 179 ms
42,496 KB
testcase_26 AC 177 ms
42,584 KB
testcase_27 AC 174 ms
42,520 KB
testcase_28 AC 212 ms
45,152 KB
testcase_29 AC 241 ms
44,416 KB
testcase_30 AC 227 ms
44,128 KB
testcase_31 AC 166 ms
42,436 KB
testcase_32 AC 173 ms
42,432 KB
testcase_33 AC 234 ms
45,228 KB
testcase_34 AC 185 ms
42,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		
		HashSet<String> set = new HashSet<String>();
		
		long answer = 0;
		for(long i = 1; i * i <= N; i++){
			if(N % i != 0){ continue; }
			
			set.add(i + "" + (N / i));
			set.add((N / i) + "" + i);
		}
		
		System.out.println(set.size());
	}
}
0