結果

問題 No.537 ユーザーID
ユーザー Shun_PIShun_PI
提出日時 2017-06-30 22:50:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 2,372 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 83,656 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-10-04 20:48:46
合計ジャッジ時間 5,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,028 KB
testcase_01 AC 49 ms
50,132 KB
testcase_02 AC 50 ms
49,912 KB
testcase_03 AC 50 ms
49,964 KB
testcase_04 AC 49 ms
49,960 KB
testcase_05 AC 49 ms
50,252 KB
testcase_06 AC 49 ms
50,044 KB
testcase_07 AC 49 ms
50,140 KB
testcase_08 AC 52 ms
49,844 KB
testcase_09 AC 51 ms
50,092 KB
testcase_10 AC 53 ms
50,080 KB
testcase_11 AC 51 ms
50,048 KB
testcase_12 AC 50 ms
50,340 KB
testcase_13 AC 52 ms
49,688 KB
testcase_14 AC 52 ms
49,656 KB
testcase_15 AC 52 ms
49,848 KB
testcase_16 AC 49 ms
50,172 KB
testcase_17 AC 50 ms
49,788 KB
testcase_18 AC 75 ms
51,600 KB
testcase_19 AC 74 ms
51,184 KB
testcase_20 AC 73 ms
51,256 KB
testcase_21 AC 72 ms
51,540 KB
testcase_22 AC 77 ms
51,308 KB
testcase_23 AC 83 ms
51,544 KB
testcase_24 AC 63 ms
50,452 KB
testcase_25 AC 83 ms
51,588 KB
testcase_26 AC 85 ms
51,704 KB
testcase_27 AC 78 ms
51,968 KB
testcase_28 AC 123 ms
51,856 KB
testcase_29 AC 142 ms
54,384 KB
testcase_30 AC 133 ms
54,672 KB
testcase_31 AC 71 ms
50,836 KB
testcase_32 AC 72 ms
51,064 KB
testcase_33 AC 116 ms
51,956 KB
testcase_34 AC 95 ms
51,600 KB
権限があれば一括ダウンロードができます

ソースコード

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.valueOf(N/num);
			if(!sset.contains(s)) {
				sset.add(s);
			}
		}
		
		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