結果

問題 No.2189 六平方和
ユーザー rlangevinrlangevin
提出日時 2023-01-13 23:01:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 72,632 KB
最終ジャッジ日時 2024-06-06 23:54:15
合計ジャッジ時間 2,742 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
69,888 KB
testcase_01 AC 49 ms
70,240 KB
testcase_02 AC 48 ms
70,204 KB
testcase_03 AC 49 ms
69,980 KB
testcase_04 AC 47 ms
69,488 KB
testcase_05 AC 49 ms
69,912 KB
testcase_06 AC 47 ms
69,748 KB
testcase_07 AC 46 ms
69,164 KB
testcase_08 AC 48 ms
69,812 KB
testcase_09 AC 48 ms
69,720 KB
testcase_10 AC 45 ms
69,952 KB
testcase_11 AC 47 ms
69,556 KB
testcase_12 AC 48 ms
70,212 KB
testcase_13 AC 47 ms
69,380 KB
testcase_14 AC 47 ms
69,392 KB
testcase_15 AC 47 ms
69,092 KB
testcase_16 AC 49 ms
69,100 KB
testcase_17 AC 50 ms
69,276 KB
testcase_18 AC 48 ms
69,716 KB
testcase_19 AC 48 ms
70,748 KB
testcase_20 AC 49 ms
70,684 KB
testcase_21 AC 52 ms
71,844 KB
testcase_22 AC 49 ms
70,752 KB
testcase_23 AC 51 ms
72,632 KB
testcase_24 AC 51 ms
71,140 KB
testcase_25 AC 52 ms
71,172 KB
testcase_26 AC 48 ms
69,596 KB
testcase_27 AC 50 ms
71,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, M, B = map(int, input().split())

i = 0
S = set()
A = pow(M, N, B)
D = dict()
while i * i < 10 ** 9:
    S.add(i * i)
    D[i * i] = i
    i += 1
L = sorted(list(S))
ind = bisect_right(L, A)
ans = [D[L[ind-1]]]
A -= L[ind-1]
ind = bisect_right(L, A)
ans.append(D[L[ind-1]])
A -= L[ind-1]
LL = []
for a in L:
    if a <= A:
        LL.append(a)
N = len(LL)
for a in range(N):
    for b in range(a, N):
        for c in range(b, N):
            for d in range(c, N):
                if LL[a] + LL[b] + LL[c] + LL[d] == A:
                    ans.append(D[LL[a]])
                    ans.append(D[LL[b]])
                    ans.append(D[LL[c]])
                    ans.append(D[LL[d]])
print("YES")
print(*ans)
                    
0