結果

問題 No.537 ユーザーID
ユーザー syuki791syuki791
提出日時 2017-07-02 14:00:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 2,711 ms
コンパイル使用メモリ 76,908 KB
実行使用メモリ 56,748 KB
最終ジャッジ日時 2024-10-05 07:28:14
合計ジャッジ時間 9,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,100 KB
testcase_01 AC 127 ms
54,192 KB
testcase_02 AC 129 ms
54,200 KB
testcase_03 AC 128 ms
54,080 KB
testcase_04 AC 126 ms
53,836 KB
testcase_05 AC 176 ms
53,784 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 127 ms
53,896 KB
testcase_09 AC 129 ms
53,912 KB
testcase_10 AC 128 ms
53,916 KB
testcase_11 AC 127 ms
54,144 KB
testcase_12 AC 115 ms
52,804 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 129 ms
54,220 KB
testcase_16 AC 128 ms
54,000 KB
testcase_17 WA -
testcase_18 AC 158 ms
54,328 KB
testcase_19 AC 146 ms
53,920 KB
testcase_20 AC 145 ms
54,324 KB
testcase_21 AC 154 ms
53,992 KB
testcase_22 AC 163 ms
54,264 KB
testcase_23 AC 165 ms
54,356 KB
testcase_24 AC 137 ms
53,732 KB
testcase_25 AC 162 ms
54,296 KB
testcase_26 AC 164 ms
54,016 KB
testcase_27 AC 159 ms
54,252 KB
testcase_28 AC 182 ms
54,732 KB
testcase_29 AC 202 ms
55,616 KB
testcase_30 AC 195 ms
55,404 KB
testcase_31 WA -
testcase_32 AC 163 ms
54,416 KB
testcase_33 WA -
testcase_34 AC 167 ms
54,244 KB
権限があれば一括ダウンロードができます

ソースコード

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;
	
		long heihou = (long) Math.floor(Math.sqrt((double)n));
		
		for(long i= 1;i<=heihou;i++){
			if(n%i==0){
				count++;
				String s1 = String.valueOf(i);
				String s2 = String.valueOf(n/i);
				long n1 = Long.parseLong(s1+s2);
				long n2 = Long.parseLong(s2+s1);
				if(n1 != n2){
				count++;
				}
				
			}
		}
		
			
		System.out.println(count);
		
	}

}
0