結果

問題 No.1218 Something Like a Theorem
ユーザー ああいいああいい
提出日時 2022-01-10 13:39:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-11-14 10:50:48
合計ジャッジ時間 1,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,004 KB
testcase_01 AC 36 ms
52,396 KB
testcase_02 AC 36 ms
53,132 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 37 ms
52,072 KB
testcase_07 AC 37 ms
54,068 KB
testcase_08 AC 42 ms
52,604 KB
testcase_09 AC 41 ms
52,404 KB
testcase_10 AC 39 ms
52,868 KB
testcase_11 AC 38 ms
52,576 KB
testcase_12 AC 39 ms
53,312 KB
testcase_13 AC 38 ms
53,296 KB
testcase_14 AC 39 ms
51,956 KB
testcase_15 AC 38 ms
52,492 KB
testcase_16 AC 38 ms
53,172 KB
testcase_17 AC 37 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = map(int,input().split())
import sys
if n >= 3:
    print('No')
    exit()
if n == 1:
    if z > 1:
        print('Yws')
        exit()
    else:
        print('No')
        exit()

s =set()
for x in range(1,z):
    s.add(x * x)
for x in range(1,z):
    if z * z - x * x in s:
        print('Yes')
        exit()
print('No')

    
0