結果

問題 No.2189 六平方和
ユーザー shobonvipshobonvip
提出日時 2023-01-13 22:27:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 57,984 KB
最終ジャッジ日時 2024-06-06 23:14:21
合計ジャッジ時間 3,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 39 ms
51,712 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 39 ms
51,968 KB
testcase_15 AC 39 ms
51,584 KB
testcase_16 AC 39 ms
51,584 KB
testcase_17 AC 39 ms
51,712 KB
testcase_18 AC 39 ms
51,712 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 43 ms
57,472 KB
testcase_22 AC 42 ms
57,344 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 42 ms
57,344 KB
testcase_27 AC 42 ms
57,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, b = map(int,input().split())
targ = pow(m, n, b)

g = []
for j in range(6):
	i = 0
	while True:
		if (i + 1) ** 2 > targ:
			break
		i += 1
	targ = targ - i * i
	g.append(i)

for i in range(6):
	if g[i] == 0:
		g[i] += b

#print(targ)
print("YES")
print(*g)
0