結果

問題 No.1218 Something Like a Theorem
ユーザー tentententen
提出日時 2020-09-07 08:27:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 2,763 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-11-29 10:13:53
合計ジャッジ時間 5,154 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,264 KB
testcase_01 AC 113 ms
41,072 KB
testcase_02 AC 104 ms
39,724 KB
testcase_03 AC 105 ms
41,040 KB
testcase_04 AC 115 ms
41,152 KB
testcase_05 AC 117 ms
41,264 KB
testcase_06 AC 118 ms
40,920 KB
testcase_07 AC 119 ms
41,308 KB
testcase_08 AC 108 ms
41,464 KB
testcase_09 AC 119 ms
41,152 KB
testcase_10 AC 116 ms
41,000 KB
testcase_11 AC 101 ms
41,132 KB
testcase_12 AC 114 ms
41,564 KB
testcase_13 AC 119 ms
41,064 KB
testcase_14 AC 108 ms
41,464 KB
testcase_15 AC 107 ms
41,240 KB
testcase_16 AC 117 ms
41,240 KB
testcase_17 AC 116 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int z = sc.nextInt();
    	boolean flag = false;
    	if (n == 1) {
    	    flag = (z != 1);
    	} else if (n == 2) {
    	    for (int i = 1; i < z; i++) {
    	        for (int j = i; i * i + j * j <= z * z; j++) {
    	            if (i * i + j * j == z * z) {
    	                flag = true;
    	            }
    	        }
    	    }
    	} else {
    	    flag = false;
    	}
    	if (flag) {
    	    System.out.println("Yes");
    	} else {
    	    System.out.println("No");
    	}
    }
}
0