結果

問題 No.1218 Something Like a Theorem
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-05 23:07:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 158 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 61,324 KB
最終ジャッジ日時 2024-09-05 23:07:47
合計ジャッジ時間 1,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,624 KB
testcase_01 AC 38 ms
52,556 KB
testcase_02 AC 45 ms
60,736 KB
testcase_03 AC 45 ms
60,576 KB
testcase_04 AC 45 ms
59,076 KB
testcase_05 WA -
testcase_06 AC 45 ms
59,504 KB
testcase_07 AC 54 ms
61,324 KB
testcase_08 AC 49 ms
60,780 KB
testcase_09 AC 49 ms
59,348 KB
testcase_10 AC 49 ms
61,128 KB
testcase_11 AC 48 ms
59,348 KB
testcase_12 AC 47 ms
60,280 KB
testcase_13 AC 37 ms
52,488 KB
testcase_14 AC 37 ms
53,068 KB
testcase_15 AC 36 ms
52,948 KB
testcase_16 AC 36 ms
52,616 KB
testcase_17 AC 36 ms
52,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z=map(int,input().split())
if n<=2:
	f=0
	for x in range(1,1001):
		for y in range(1,1001):
			f|=x**n+y**n==z**n
	print(["No","Yes"][f])
else:
	print("No")
0