結果

問題 No.1218 Something Like a Theorem
ユーザー tikitaka1201tikitaka1201
提出日時 2020-10-03 11:51:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 68,120 KB
最終ジャッジ日時 2024-07-18 04:16:32
合計ジャッジ時間 1,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,276 KB
testcase_01 AC 47 ms
61,020 KB
testcase_02 AC 35 ms
52,556 KB
testcase_03 AC 35 ms
52,540 KB
testcase_04 AC 34 ms
52,556 KB
testcase_05 AC 35 ms
53,344 KB
testcase_06 AC 38 ms
54,800 KB
testcase_07 AC 42 ms
60,672 KB
testcase_08 AC 42 ms
60,516 KB
testcase_09 AC 42 ms
61,940 KB
testcase_10 AC 41 ms
58,536 KB
testcase_11 AC 37 ms
54,184 KB
testcase_12 AC 35 ms
52,892 KB
testcase_13 AC 35 ms
53,380 KB
testcase_14 AC 35 ms
53,332 KB
testcase_15 AC 43 ms
67,332 KB
testcase_16 AC 44 ms
67,192 KB
testcase_17 AC 46 ms
68,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def MI():
    return map(int, input().split())

n,z= MI()

if n==1:
    if z>1: print('Yes')
    else: print('No')
    exit()
zn=z**n

for x in range(1,10**3+1):
    for y in range(x, 10**3+1):
        if x**n+y**n==zn:
            print('Yes')
            exit()
        if x**n+y**n>z**n:
            break
print('No')
0