結果

問題 No.537 ユーザーID
ユーザー syuki791syuki791
提出日時 2017-07-02 14:27:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 997 bytes
コンパイル時間 2,848 ms
コンパイル使用メモリ 80,300 KB
実行使用メモリ 60,336 KB
最終ジャッジ日時 2024-10-05 07:33:25
合計ジャッジ時間 10,662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,064 KB
testcase_01 AC 154 ms
54,404 KB
testcase_02 AC 152 ms
53,736 KB
testcase_03 AC 154 ms
53,932 KB
testcase_04 AC 146 ms
53,708 KB
testcase_05 AC 134 ms
53,708 KB
testcase_06 AC 133 ms
53,600 KB
testcase_07 AC 134 ms
53,704 KB
testcase_08 AC 132 ms
54,104 KB
testcase_09 AC 139 ms
53,880 KB
testcase_10 AC 133 ms
54,056 KB
testcase_11 AC 155 ms
54,176 KB
testcase_12 AC 151 ms
54,332 KB
testcase_13 AC 155 ms
53,924 KB
testcase_14 AC 153 ms
54,032 KB
testcase_15 AC 153 ms
54,484 KB
testcase_16 AC 169 ms
53,828 KB
testcase_17 AC 155 ms
54,380 KB
testcase_18 AC 219 ms
55,764 KB
testcase_19 AC 177 ms
56,012 KB
testcase_20 AC 177 ms
54,196 KB
testcase_21 AC 210 ms
55,364 KB
testcase_22 AC 198 ms
55,768 KB
testcase_23 AC 196 ms
55,904 KB
testcase_24 AC 145 ms
53,664 KB
testcase_25 AC 219 ms
56,016 KB
testcase_26 AC 201 ms
55,740 KB
testcase_27 AC 186 ms
55,528 KB
testcase_28 AC 281 ms
56,772 KB
testcase_29 AC 392 ms
60,336 KB
testcase_30 AC 354 ms
58,440 KB
testcase_31 AC 192 ms
55,520 KB
testcase_32 AC 172 ms
54,644 KB
testcase_33 AC 348 ms
58,336 KB
testcase_34 AC 198 ms
55,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;

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;
	
		long heihou = (long) Math.floor(Math.sqrt((double)n));
		ArrayList<Long> lList = new ArrayList<Long>();
		boolean b1;
		boolean b2;
		String s1;
		String s2;
		long n1;
		long n2;
		for(long i= 1;i<=heihou;i++){
			if(n%i==0){
				s1 = String.valueOf(i);
				s2 = String.valueOf(n/i);
				n1 = Long.parseLong(s1+s2);
				n2 = Long.parseLong(s2+s1);
				 b1 = true;
				 b2 = true;
				for(long l:lList){
					if(l == n1){
						b1 = false;
						break;
					}
				}
				if(b1){
					count++;
					lList.add(n1);
				}
				if(n1 != n2){
					for(long l:lList){
						if(l == n2){
							b2 = false;
							break;
						}
					}
					if(b2){
						count++;
						lList.add(n2);
					}
				}
				
			}
		}
		
			
		System.out.println(count);
		
	}

}
0