結果

問題 No.1593 Perfect Distance
ユーザー tentententen
提出日時 2021-07-12 10:14:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 1,259 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 78,692 KB
実行使用メモリ 60,856 KB
最終ジャッジ日時 2024-07-02 03:22:41
合計ジャッジ時間 4,877 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,744 KB
testcase_01 AC 53 ms
36,836 KB
testcase_02 AC 55 ms
36,888 KB
testcase_03 AC 54 ms
36,604 KB
testcase_04 AC 53 ms
36,848 KB
testcase_05 AC 52 ms
36,980 KB
testcase_06 AC 52 ms
36,536 KB
testcase_07 AC 55 ms
36,524 KB
testcase_08 AC 54 ms
36,632 KB
testcase_09 AC 65 ms
38,052 KB
testcase_10 AC 95 ms
40,968 KB
testcase_11 AC 120 ms
45,048 KB
testcase_12 AC 135 ms
45,380 KB
testcase_13 AC 138 ms
45,268 KB
testcase_14 AC 154 ms
49,140 KB
testcase_15 AC 215 ms
52,752 KB
testcase_16 AC 303 ms
60,856 KB
testcase_17 AC 52 ms
36,804 KB
testcase_18 AC 53 ms
36,896 KB
testcase_19 AC 52 ms
36,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextInt();
        HashSet<Long> squares = new HashSet<>();
        for (long i = 1; i <= n; i++) {
            squares.add(i * i);
        }
        long target = n * n;
        int count = 0;
        for (long i = 1; i <= n && i * i <= target - i * i; i++) {
            if (squares.contains(target - i * i)) {
                count++;
                if (i * i != target - i * i) {
                    count++;
                }
            }
        }
        System.out.println(count);
    }
}


class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0