結果

問題 No.2189 六平方和
ユーザー 👑 testestesttestestest
提出日時 2022-12-16 02:31:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 895 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 240,140 KB
最終ジャッジ日時 2024-11-26 20:51:26
合計ジャッジ時間 6,584 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
75,520 KB
testcase_01 AC 68 ms
75,524 KB
testcase_02 AC 68 ms
75,644 KB
testcase_03 AC 70 ms
75,776 KB
testcase_04 AC 68 ms
75,648 KB
testcase_05 AC 69 ms
75,520 KB
testcase_06 AC 70 ms
75,648 KB
testcase_07 AC 69 ms
75,836 KB
testcase_08 AC 68 ms
75,520 KB
testcase_09 AC 70 ms
75,872 KB
testcase_10 AC 69 ms
75,648 KB
testcase_11 AC 353 ms
239,716 KB
testcase_12 AC 449 ms
239,760 KB
testcase_13 AC 71 ms
75,680 KB
testcase_14 AC 73 ms
75,664 KB
testcase_15 AC 69 ms
75,856 KB
testcase_16 AC 70 ms
75,676 KB
testcase_17 AC 74 ms
75,784 KB
testcase_18 AC 161 ms
118,036 KB
testcase_19 AC 314 ms
222,440 KB
testcase_20 AC 349 ms
239,824 KB
testcase_21 AC 312 ms
240,140 KB
testcase_22 AC 311 ms
239,872 KB
testcase_23 AC 351 ms
239,760 KB
testcase_24 AC 326 ms
239,772 KB
testcase_25 AC 315 ms
239,256 KB
testcase_26 AC 374 ms
239,748 KB
testcase_27 AC 316 ms
240,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,B=map(int,input().split())
X=pow(M,N,B)
print("YES")

d={i*i%B:i for i in range(10**6)}

import random
while True:
  a=random.randint(0,B-1)
  b=random.randint(0,B-1)
  c=random.randint(0,B-1)
  dd=(X-a*a-b*b-c*c)%B
  if dd in d:
    print(a,b,c,d[dd],0,0)
    exit()
0