結果

問題 No.537 ユーザーID
ユーザー syuki791syuki791
提出日時 2017-07-02 13:32:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 55,800 KB
最終ジャッジ日時 2024-10-05 07:24:09
合計ジャッジ時間 6,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
52,524 KB
testcase_01 AC 95 ms
52,812 KB
testcase_02 AC 95 ms
52,744 KB
testcase_03 AC 96 ms
52,928 KB
testcase_04 AC 109 ms
54,044 KB
testcase_05 AC 108 ms
54,124 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 92 ms
52,600 KB
testcase_10 AC 97 ms
52,644 KB
testcase_11 AC 108 ms
53,700 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 119 ms
53,708 KB
testcase_19 AC 121 ms
53,620 KB
testcase_20 AC 110 ms
53,012 KB
testcase_21 AC 116 ms
53,804 KB
testcase_22 AC 109 ms
52,956 KB
testcase_23 AC 116 ms
53,648 KB
testcase_24 AC 114 ms
54,016 KB
testcase_25 AC 108 ms
52,764 KB
testcase_26 AC 119 ms
54,040 KB
testcase_27 AC 106 ms
53,028 KB
testcase_28 AC 102 ms
53,016 KB
testcase_29 AC 119 ms
53,656 KB
testcase_30 AC 124 ms
53,564 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner s = new Scanner(System.in);
		String str = s.next();
		s.close();
		long n = Long.parseLong(str);
		long count = 0;
		double sqrt = Math.sqrt((double)n);
		long heihou = (long) Math.floor(Math.sqrt((double)n));
		if(sqrt==(double)heihou){
			count--;
		}
		for(long i= 1;i<=heihou;i++){
			if(n%i==0){
				count++;
				count++;
				
			}
		}
		
			
		System.out.println(count);
		
	}

}
0