結果

問題 No.2784 繰り上がりなし十進和
ユーザー hiro1729hiro1729
提出日時 2024-06-14 21:32:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 992 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 304,588 KB
最終ジャッジ日時 2024-06-14 21:34:11
合計ジャッジ時間 59,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,124 ms
78,792 KB
testcase_01 AC 1,179 ms
78,656 KB
testcase_02 TLE -
testcase_03 AC 1,239 ms
78,800 KB
testcase_04 AC 1,166 ms
78,784 KB
testcase_05 AC 1,181 ms
79,028 KB
testcase_06 AC 1,157 ms
79,120 KB
testcase_07 AC 1,139 ms
78,924 KB
testcase_08 AC 1,238 ms
78,340 KB
testcase_09 AC 1,204 ms
78,916 KB
testcase_10 AC 1,183 ms
78,920 KB
testcase_11 AC 1,203 ms
79,024 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,426 ms
159,000 KB
testcase_15 AC 1,239 ms
94,836 KB
testcase_16 AC 1,376 ms
109,660 KB
testcase_17 AC 1,768 ms
243,772 KB
testcase_18 AC 1,707 ms
243,384 KB
testcase_19 AC 1,458 ms
117,808 KB
testcase_20 TLE -
testcase_21 AC 1,396 ms
109,608 KB
testcase_22 TLE -
testcase_23 AC 1,425 ms
89,652 KB
testcase_24 AC 1,502 ms
143,036 KB
testcase_25 AC 1,748 ms
242,736 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,605 ms
158,900 KB
testcase_29 TLE -
testcase_30 AC 1,562 ms
159,644 KB
testcase_31 AC 1,433 ms
109,628 KB
testcase_32 AC 1,674 ms
243,116 KB
testcase_33 AC 1,718 ms
243,640 KB
testcase_34 AC 1,513 ms
143,548 KB
testcase_35 AC 1,320 ms
94,636 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)]
st = set()
for p in range(10):
	for q in range(10):
		for r in range(10):
			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[0][p])
						ans = g(ans, b[1][q])
						ans = g(ans, b[2][r])
						ans = g(ans, b[3][s])
						ans = g(ans, b[4][t])
						ans = g(ans, b[5][u])
						
						st.add(ans)
print(len(st))
0