結果

問題 No.2784 繰り上がりなし十進和
ユーザー hiro1729hiro1729
提出日時 2024-06-14 21:35:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,251 ms / 2,000 ms
コード長 1,046 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 338,352 KB
最終ジャッジ日時 2024-06-14 21:36:58
合計ジャッジ時間 24,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
76,384 KB
testcase_01 AC 73 ms
76,288 KB
testcase_02 AC 1,235 ms
338,352 KB
testcase_03 AC 66 ms
76,388 KB
testcase_04 AC 71 ms
76,160 KB
testcase_05 AC 71 ms
76,160 KB
testcase_06 AC 71 ms
76,160 KB
testcase_07 AC 74 ms
75,904 KB
testcase_08 AC 184 ms
77,056 KB
testcase_09 AC 72 ms
76,544 KB
testcase_10 AC 86 ms
76,416 KB
testcase_11 AC 136 ms
76,928 KB
testcase_12 AC 1,194 ms
338,224 KB
testcase_13 AC 1,208 ms
337,872 KB
testcase_14 AC 277 ms
146,384 KB
testcase_15 AC 123 ms
89,444 KB
testcase_16 AC 675 ms
104,280 KB
testcase_17 AC 910 ms
234,064 KB
testcase_18 AC 916 ms
232,436 KB
testcase_19 AC 394 ms
113,076 KB
testcase_20 AC 1,250 ms
338,088 KB
testcase_21 AC 636 ms
106,128 KB
testcase_22 AC 1,240 ms
338,196 KB
testcase_23 AC 582 ms
86,900 KB
testcase_24 AC 832 ms
132,356 KB
testcase_25 AC 943 ms
233,448 KB
testcase_26 AC 1,209 ms
338,096 KB
testcase_27 AC 1,251 ms
338,080 KB
testcase_28 AC 742 ms
154,196 KB
testcase_29 AC 1,223 ms
338,224 KB
testcase_30 AC 781 ms
153,916 KB
testcase_31 AC 869 ms
100,828 KB
testcase_32 AC 981 ms
234,040 KB
testcase_33 AC 912 ms
234,188 KB
testcase_34 AC 826 ms
132,464 KB
testcase_35 AC 600 ms
89,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict as dd
S = input
R = range
P = print
def I(): return int(S())
def M(): return map(int, S().split())
def L(): return list(M())
def O(): return list(map(int, open(0).read().split()))
def yn(b): print("Yes" if b else "No")
biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
smaa = "abcdefghijklmnopqrstuvwxyz"

def f(n, k):
	return tuple([n[i] * k % 10 for i in R(6)])

def g(n, m):
	return tuple([(n[i] + m[i]) % 10 for i in R(6)])

a = [tuple(map(int, input())) for _ in R(6)]
b = [[f(a[i], j) for j in R(10)] for i in R(6)]
st1 = set()
for p in range(10):
	for q in range(10):
		for r in range(10):
			ans = (0, 0, 0, 0, 0, 0)
			ans = g(ans, b[0][p])
			ans = g(ans, b[1][q])
			ans = g(ans, b[2][r])
			st1.add(ans)
st2 = set()
for s in range(10):
	for t in range(10):
		for u in range(10):
			ans = (0, 0, 0, 0, 0, 0)
			ans = g(ans, b[3][s])
			ans = g(ans, b[4][t])
			ans = g(ans, b[5][u])
			st2.add(ans)
print(len(set(g(i, j) for i in st1 for j in st2)))
0