結果

問題 No.537 ユーザーID
ユーザー Shun_PIShun_PI
提出日時 2017-06-30 22:48:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,497 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 81,228 KB
実行使用メモリ 58,180 KB
最終ジャッジ日時 2024-10-04 20:46:45
合計ジャッジ時間 7,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
50,836 KB
testcase_01 AC 76 ms
50,956 KB
testcase_02 AC 76 ms
50,708 KB
testcase_03 AC 73 ms
50,780 KB
testcase_04 AC 73 ms
50,964 KB
testcase_05 AC 72 ms
50,928 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 73 ms
51,048 KB
testcase_10 AC 83 ms
51,364 KB
testcase_11 AC 77 ms
50,372 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 130 ms
52,880 KB
testcase_19 AC 116 ms
53,076 KB
testcase_20 AC 115 ms
52,892 KB
testcase_21 AC 127 ms
53,068 KB
testcase_22 AC 124 ms
52,908 KB
testcase_23 AC 126 ms
53,308 KB
testcase_24 AC 90 ms
51,816 KB
testcase_25 AC 139 ms
53,176 KB
testcase_26 AC 139 ms
53,180 KB
testcase_27 AC 213 ms
53,744 KB
testcase_28 AC 213 ms
58,180 KB
testcase_29 AC 222 ms
56,464 KB
testcase_30 AC 214 ms
56,472 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.HashSet;
import java.util.NoSuchElementException;
 
public class Main {
	private static FastScanner sc = new FastScanner();
	
	public static void main(String[] args) {
		long N = sc.nextLong();
		
		HashSet<Long> set = new HashSet<>();
		for(long i=1; i*i<=N; i++) {
			if(N % i == 0) {
				set.add(i);
			}
		}
		
		HashSet<Long> set2 = new HashSet<>();
		set2.addAll(set);
		for(long num : set) {
			if(!set2.contains(N/num)) {
				set2.add(N/num);
			}
		}
		HashSet<String> sset = new HashSet<>();
		for(long num : set2) {
			String s = String.valueOf(num);
			String t = "";
			for(int i=0; i<s.length(); i++) {
				t += s.charAt(i);
			}
			for(int i=s.length()-1; i>=0; i--) {
				t += s.charAt(i);
			}
			if(!sset.contains(t)) {
				sset.add(t);
			}
		}
		
		System.out.println(sset.size());
	}
	
	static class FastScanner {
        private final InputStream in = System.in;
        private final byte[] buffer = new byte[1024];
        private int ptr = 0;
        private int buflen = 0;
        private boolean hasNextByte() {
            if(ptr < buflen) {
                return true;
            } else {
                ptr = 0;
                try {
                    buflen = in.read(buffer);
                } catch(IOException e) {
                    e.printStackTrace();
                }
                if(buflen <= 0) {
                    return false;
                }
            }
            return true;
        }
        private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
        private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
        private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}
        public boolean hasNext() { skipUnprintable(); return hasNextByte();}
        public String next() {
            if (!hasNext()) throw new NoSuchElementException();
            StringBuilder sb = new StringBuilder();
            int b = readByte();
            while(isPrintableChar(b)) {
                sb.appendCodePoint(b);
                b = readByte();
            }
            return sb.toString();
        }
        public long nextLong() {
            return Long.parseLong(next());
        }
        public int nextInt(){
            return Integer.parseInt(next());
        }
        public double nextDouble(){
            return Double.parseDouble(next());
        }
    }
}
0