結果

問題 No.1218 Something Like a Theorem
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-05 23:00:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-09-05 23:00:45
合計ジャッジ時間 2,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,020 KB
testcase_01 AC 43 ms
52,668 KB
testcase_02 WA -
testcase_03 AC 42 ms
52,544 KB
testcase_04 AC 40 ms
52,368 KB
testcase_05 AC 40 ms
52,932 KB
testcase_06 AC 42 ms
52,572 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 41 ms
54,220 KB
testcase_10 WA -
testcase_11 AC 39 ms
52,584 KB
testcase_12 AC 38 ms
53,676 KB
testcase_13 AC 39 ms
53,120 KB
testcase_14 AC 42 ms
52,028 KB
testcase_15 AC 40 ms
51,824 KB
testcase_16 AC 40 ms
53,376 KB
testcase_17 AC 38 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z=map(int,input().split())
if n==1:
	print("Yes")
else:
	a=0
	for x in range(1,30):
		if x>=z:
			break
		for y in range(1,30):
			if y>=z:
				break
			a+=x**n+y**n==z**n
	print(["No","Yes"][a>0])
0