結果

問題 No.537 ユーザーID
ユーザー Amanita2016Amanita2016
提出日時 2017-07-01 13:01:50
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,193 bytes
コンパイル時間 2,482 ms
コンパイル使用メモリ 78,760 KB
実行使用メモリ 78,536 KB
最終ジャッジ日時 2024-10-05 03:29:15
合計ジャッジ時間 8,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
78,216 KB
testcase_01 AC 127 ms
71,152 KB
testcase_02 AC 125 ms
71,212 KB
testcase_03 AC 130 ms
71,068 KB
testcase_04 AC 123 ms
71,092 KB
testcase_05 AC 122 ms
71,216 KB
testcase_06 AC 124 ms
71,104 KB
testcase_07 AC 130 ms
71,072 KB
testcase_08 AC 121 ms
71,144 KB
testcase_09 AC 123 ms
71,140 KB
testcase_10 AC 110 ms
70,176 KB
testcase_11 AC 125 ms
71,228 KB
testcase_12 AC 133 ms
71,176 KB
testcase_13 AC 121 ms
71,196 KB
testcase_14 AC 125 ms
71,392 KB
testcase_15 AC 126 ms
71,460 KB
testcase_16 AC 114 ms
70,040 KB
testcase_17 AC 113 ms
70,356 KB
testcase_18 AC 124 ms
70,872 KB
testcase_19 TLE -
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 if(ans == i){
					x1[cnt] = ans;
					x2[cnt] = i;
					cnt++;
					break ;
				}else{
					break ;
				}
			}
		}
		String comb[] = new String[cnt*2+1];
		int x = 0;
		for(int i = 0 ; i < cnt ; i++){
			boolean flg = true;
			String str = Long.toString(x1[i]) + Long.toString(x2[i]);
			for(int j = 0 ; j < x ; j++){
				if(str.equals(comb[j])){
					flg = false;
					break;
				}
			}
			if(flg){
				comb[x] = str;
				x++;
			}
			flg = true;
			if(x1[i] != x2[i]){
				str = Long.toString(x2[i]) + Long.toString(x1[i]);
				for(int j = 0 ; j < x ; j++){
					if(str.equals(comb[j])){
						flg = false;
						break;
					}
				}
				if(flg){
					comb[x] = str;
					x++;
				}
			}
		}
	    System.out.println(x);
	}

}
0