結果

問題 No.1218 Something Like a Theorem
ユーザー kites7483kites7483
提出日時 2020-09-14 23:16:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-22 01:00:24
合計ジャッジ時間 10,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
10,624 KB
testcase_01 AC 425 ms
10,752 KB
testcase_02 AC 320 ms
10,624 KB
testcase_03 AC 304 ms
10,624 KB
testcase_04 AC 276 ms
10,624 KB
testcase_05 WA -
testcase_06 AC 304 ms
10,752 KB
testcase_07 AC 348 ms
10,752 KB
testcase_08 AC 343 ms
10,624 KB
testcase_09 AC 349 ms
10,624 KB
testcase_10 AC 351 ms
10,624 KB
testcase_11 AC 303 ms
10,752 KB
testcase_12 AC 326 ms
10,624 KB
testcase_13 AC 387 ms
10,624 KB
testcase_14 AC 569 ms
10,624 KB
testcase_15 AC 965 ms
10,752 KB
testcase_16 AC 1,236 ms
10,624 KB
testcase_17 AC 1,948 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = map(int, input().split())
count = 0
for i in range(1,1001):
    for j in range(1,1001):
        if i**n + j**n == z**n:
            count += 1
            break
if count != 0:
    print('Yes')
else:
    print('No')
0