結果

問題 No.537 ユーザーID
ユーザー Amanita2016Amanita2016
提出日時 2017-07-01 12:38:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 2,657 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 78,188 KB
最終ジャッジ日時 2024-10-05 03:28:08
合計ジャッジ時間 6,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
78,188 KB
testcase_01 AC 111 ms
70,160 KB
testcase_02 AC 120 ms
71,096 KB
testcase_03 AC 186 ms
71,204 KB
testcase_04 AC 120 ms
71,128 KB
testcase_05 AC 129 ms
71,276 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long[] x1 = new long [1000000];
		long[] x2 = new long [1000000];
		int cnt = 0;
		for(long i = 1 ; ; i++){
			if((n%i)==0){
				long ans = n / i ;
				if(ans >= i){
					x1[cnt] = ans;
					x2[cnt] = i;
					cnt++;
				}else{
					break ;
				}
			}
		}
		int x = 0;
		for(int i = 0 ; i < cnt ; i++){
			if(x1[i] == x2[i]){
				x++;
			}else{
				x+=2;
			}
		}
	    System.out.println(x);
	}

}
0