結果

問題 No.537 ユーザーID
ユーザー fal_rndfal_rnd
提出日時 2017-08-25 23:25:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 2,621 ms
コンパイル使用メモリ 86,340 KB
実行使用メモリ 47,396 KB
最終ジャッジ日時 2024-10-15 16:12:10
合計ジャッジ時間 11,460 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 200 ms
43,120 KB
testcase_01 AC 192 ms
42,852 KB
testcase_02 AC 202 ms
43,212 KB
testcase_03 AC 194 ms
43,212 KB
testcase_04 AC 202 ms
42,924 KB
testcase_05 AC 200 ms
43,392 KB
testcase_06 AC 202 ms
43,296 KB
testcase_07 AC 193 ms
43,084 KB
testcase_08 AC 189 ms
43,176 KB
testcase_09 AC 182 ms
42,740 KB
testcase_10 AC 184 ms
43,184 KB
testcase_11 AC 203 ms
43,064 KB
testcase_12 AC 191 ms
43,348 KB
testcase_13 AC 184 ms
43,176 KB
testcase_14 AC 202 ms
42,996 KB
testcase_15 AC 195 ms
43,000 KB
testcase_16 AC 189 ms
43,020 KB
testcase_17 AC 203 ms
42,992 KB
testcase_18 AC 223 ms
43,448 KB
testcase_19 AC 213 ms
43,028 KB
testcase_20 AC 217 ms
43,120 KB
testcase_21 AC 215 ms
43,180 KB
testcase_22 AC 221 ms
43,216 KB
testcase_23 AC 225 ms
43,392 KB
testcase_24 AC 197 ms
43,096 KB
testcase_25 AC 218 ms
43,328 KB
testcase_26 AC 225 ms
43,336 KB
testcase_27 AC 221 ms
43,300 KB
testcase_28 AC 274 ms
45,592 KB
testcase_29 AC 289 ms
46,120 KB
testcase_30 AC 282 ms
46,000 KB
testcase_31 AC 212 ms
43,340 KB
testcase_32 AC 211 ms
43,316 KB
testcase_33 AC 285 ms
47,396 KB
testcase_34 AC 200 ms
43,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}

	public static void main(String[]$){
		long n=s.nextLong();
		int sq=(int)Math.sqrt(n)+1;
		HashSet<String>r=new HashSet<>();
		for(int i=1;i<sq;++i)if(n%i==0) {
			r.add(""+i+n/i);
			r.add(""+n/i+i);
		}
		System.out.println(r.size());
	}
}
0