結果

問題 No.1218 Something Like a Theorem
ユーザー MottchanMottchan
提出日時 2023-03-26 19:46:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 444 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-09-19 09:57:58
合計ジャッジ時間 1,586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,392 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 37 ms
51,456 KB
testcase_05 AC 35 ms
51,456 KB
testcase_06 AC 41 ms
59,136 KB
testcase_07 AC 54 ms
64,896 KB
testcase_08 AC 54 ms
64,768 KB
testcase_09 AC 49 ms
62,080 KB
testcase_10 AC 60 ms
64,512 KB
testcase_11 AC 46 ms
59,520 KB
testcase_12 AC 46 ms
59,392 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z=map(int,input().split())
a=0
if n == 1:
    if z==1:
        print('No')
    else:
        print('Yes')
        
elif n == 2:
    for x in range(1,10**4):
        for y in range(x,10**4):
            if x ** n + y ** n == z ** n:
                a+=1
                break        
            elif x ** n + y ** n > z ** n:
                break

    if a > 0:
        print('Yes')
    else:
        print('No')
elif n == 3:
    print('No')
0