結果

問題 No.2392 二平方和
ユーザー ks2mks2m
提出日時 2023-07-28 22:32:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 2,614 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 42,548 KB
最終ジャッジ日時 2024-10-06 19:54:26
合計ジャッジ時間 5,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,172 KB
testcase_01 AC 105 ms
39,796 KB
testcase_02 AC 123 ms
41,336 KB
testcase_03 AC 106 ms
40,300 KB
testcase_04 AC 112 ms
41,120 KB
testcase_05 AC 100 ms
39,684 KB
testcase_06 AC 116 ms
40,928 KB
testcase_07 AC 114 ms
40,944 KB
testcase_08 AC 123 ms
41,444 KB
testcase_09 AC 115 ms
41,088 KB
testcase_10 AC 104 ms
40,416 KB
testcase_11 AC 104 ms
40,028 KB
testcase_12 AC 106 ms
39,696 KB
testcase_13 AC 115 ms
41,496 KB
testcase_14 AC 109 ms
40,676 KB
testcase_15 AC 101 ms
39,820 KB
testcase_16 AC 115 ms
41,328 KB
testcase_17 AC 112 ms
40,952 KB
testcase_18 AC 112 ms
40,696 KB
testcase_19 AC 101 ms
40,124 KB
testcase_20 AC 126 ms
41,132 KB
testcase_21 AC 127 ms
41,712 KB
testcase_22 AC 142 ms
41,600 KB
testcase_23 AC 146 ms
42,548 KB
testcase_24 AC 137 ms
41,712 KB
testcase_25 AC 138 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int p = sc.nextInt();
		sc.close();

		Set<Integer> set = new HashSet<>();
		for (int i = 1; i * i <= p; i++) {
			set.add(i * i);
		}

		for (int e : set) {
			if (set.contains(p - e)) {
				System.out.println("Yes");
				return;
			}
		}
		System.out.println("No");
	}
}
0