結果

問題 No.1218 Something Like a Theorem
ユーザー H3PO4H3PO4
提出日時 2020-09-04 21:26:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-26 11:48:16
合計ジャッジ時間 2,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

N, Z = map(int, input().split())
if N == 1:
    print('Yes' if Z >= 2 else 'No')
elif N == 2:
    Z2 = Z ** 2
    for x, y in itertools.combinations_with_replacement(range(1, 10 ** 3 + 1), 2):
        if x ** N + y ** N == Z2:
            print('Yes')
            break
    else:
        print('No')
else:
    print('No')
0