結果

問題 No.537 ユーザーID
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 00:04:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 73,928 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-11-06 17:53:31
合計ジャッジ時間 8,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,128 KB
testcase_01 AC 130 ms
41,148 KB
testcase_02 AC 126 ms
41,196 KB
testcase_03 AC 119 ms
40,004 KB
testcase_04 AC 126 ms
41,008 KB
testcase_05 AC 125 ms
41,224 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 117 ms
40,480 KB
testcase_10 AC 123 ms
40,956 KB
testcase_11 AC 117 ms
40,012 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 141 ms
41,512 KB
testcase_19 AC 141 ms
41,304 KB
testcase_20 AC 130 ms
40,208 KB
testcase_21 AC 140 ms
41,336 KB
testcase_22 AC 128 ms
40,136 KB
testcase_23 AC 141 ms
41,596 KB
testcase_24 AC 135 ms
41,456 KB
testcase_25 AC 129 ms
40,608 KB
testcase_26 AC 142 ms
41,148 KB
testcase_27 AC 140 ms
41,396 KB
testcase_28 AC 135 ms
41,316 KB
testcase_29 AC 143 ms
41,460 KB
testcase_30 AC 140 ms
41,196 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		long n = sc.nextLong();
		long num = 0;
		for (long i=1; i<=Math.sqrt(n); i++) {
			if (i*i==n) {num++;}
			else if (n%i==0) {num += 2;}
		}
		System.out.println(num);
	}
}
0