結果

問題 No.2189 六平方和
ユーザー FromBooskaFromBooska
提出日時 2023-06-02 15:08:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,000 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 86,972 KB
実行使用メモリ 348,280 KB
最終ジャッジ日時 2023-08-28 02:21:43
合計ジャッジ時間 8,585 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
78,264 KB
testcase_01 AC 72 ms
71,484 KB
testcase_02 AC 73 ms
71,284 KB
testcase_03 AC 73 ms
71,288 KB
testcase_04 AC 72 ms
71,252 KB
testcase_05 AC 71 ms
71,220 KB
testcase_06 AC 72 ms
71,216 KB
testcase_07 AC 72 ms
71,364 KB
testcase_08 AC 72 ms
71,352 KB
testcase_09 AC 71 ms
71,300 KB
testcase_10 AC 71 ms
70,988 KB
testcase_11 AC 81 ms
79,420 KB
testcase_12 AC 73 ms
71,176 KB
testcase_13 AC 71 ms
71,120 KB
testcase_14 AC 71 ms
71,360 KB
testcase_15 AC 72 ms
71,004 KB
testcase_16 AC 73 ms
71,252 KB
testcase_17 AC 71 ms
71,452 KB
testcase_18 AC 84 ms
78,048 KB
testcase_19 WA -
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# この作戦でどうだ
# まずM**N (mod B) = Rをpowで計算する
# xi**2 (mod B)は常に0 for xi=B, or 1 for xi=1にできる
# x1からR以下一番近いところにx1**2 (mod B)がなる値にx1を固定
# 同様にx2, x3、ーーーと決めていく
# どんどん差は小さくなり、差を埋められればYes

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

R = pow(M, N, B)
R_remainder = R
INF = 10**20
X = []
for i in range(6):
    #print('i', i, 'R_remainder', R_remainder)
    if R_remainder == 0:
        X.append(B)
        continue
    
    diff = INF
    visited = set()
    for j in range(1, B+1):
        calc = (j**2)%B
        if calc not in visited:
            visited.add(calc)
            if calc <= R_remainder and R_remainder-calc < diff:
                diff = R_remainder-calc
                num = j
        elif calc in visited:
            break
    X.append(num)
    R_remainder -= (num**2)%B
if R_remainder == 0:
    print('YES')
    print(*X)
else:
    print('NO')
0