結果

問題 No.2784 繰り上がりなし十進和
ユーザー 👑 p-adicp-adic
提出日時 2024-01-04 13:01:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 691 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 85,664 KB
最終ジャッジ日時 2024-09-27 18:40:33
合計ジャッジ時間 23,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
85,288 KB
testcase_01 AC 522 ms
85,016 KB
testcase_02 AC 552 ms
85,272 KB
testcase_03 AC 501 ms
85,664 KB
testcase_04 AC 537 ms
85,048 KB
testcase_05 AC 535 ms
85,148 KB
testcase_06 AC 530 ms
85,548 KB
testcase_07 AC 535 ms
85,164 KB
testcase_08 AC 529 ms
85,040 KB
testcase_09 AC 539 ms
85,024 KB
testcase_10 AC 537 ms
85,284 KB
testcase_11 AC 533 ms
84,776 KB
testcase_12 AC 533 ms
84,784 KB
testcase_13 AC 538 ms
85,032 KB
testcase_14 AC 527 ms
84,904 KB
testcase_15 AC 534 ms
85,400 KB
testcase_16 AC 654 ms
85,272 KB
testcase_17 AC 649 ms
85,516 KB
testcase_18 AC 629 ms
85,056 KB
testcase_19 AC 642 ms
85,528 KB
testcase_20 AC 656 ms
85,108 KB
testcase_21 AC 622 ms
85,280 KB
testcase_22 AC 627 ms
85,016 KB
testcase_23 AC 691 ms
85,152 KB
testcase_24 AC 664 ms
85,292 KB
testcase_25 AC 645 ms
84,788 KB
testcase_26 AC 597 ms
85,632 KB
testcase_27 AC 653 ms
84,776 KB
testcase_28 AC 633 ms
85,012 KB
testcase_29 AC 676 ms
85,148 KB
testcase_30 AC 638 ms
85,136 KB
testcase_31 AC 597 ms
85,276 KB
testcase_32 AC 673 ms
85,168 KB
testcase_33 AC 646 ms
85,156 KB
testcase_34 AC 689 ms
85,272 KB
testcase_35 AC 666 ms
85,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
B=10
P=[B**j for j in R(6)]
A=[]
for i in R(6):
	a=int(input())
	A+=[[a//P[j]%B for j in R(6)]]
S=[0]*B**6
t=0
for a in R(B):
	for b in R(B):
		for c in R(B):
			for d in R(B):
				for e in R(B):
					for f in R(B):S[t],t=1,sum((t//P[j]+A[5][j])%B*P[j]for j in R(6))
					t=sum((t//P[j]+A[4][j])%B*P[j]for j in R(6))
				t=sum((t//P[j]+A[3][j])%B*P[j]for j in R(6))
			t=sum((t//P[j]+A[2][j])%B*P[j]for j in R(6))
		t=sum((t//P[j]+A[1][j])%B*P[j]for j in R(6))
	t=sum((t//P[j]+A[0][j])%B*P[j]for j in R(6))
print(sum(S))
0