結果

問題 No.2784 繰り上がりなし十進和
ユーザー イルカイルカ
提出日時 2024-06-14 22:47:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 59,008 KB
最終ジャッジ日時 2024-06-14 22:48:22
合計ジャッジ時間 2,662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 39 ms
53,120 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 36 ms
52,480 KB
testcase_11 WA -
testcase_12 AC 36 ms
52,224 KB
testcase_13 AC 37 ms
52,520 KB
testcase_14 AC 36 ms
52,736 KB
testcase_15 AC 37 ms
52,796 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
58,368 KB
testcase_21 WA -
testcase_22 AC 41 ms
58,240 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 40 ms
59,008 KB
testcase_27 AC 44 ms
58,496 KB
testcase_28 WA -
testcase_29 AC 39 ms
58,752 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 41 ms
58,752 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
As = [input() for _ in range(6)]
div = [
	[0],
	[0,1,2,3,4,5,6,7,8,9],
	[0,2,4,6,8],
	[0,3,6,9,2,5,8,1,4,7],
	[0,4,8,2,6],
	[0,5],
	[0,6,2,8,4],
	[0,7,4,1,8,5,2,9,6,3],
	[0,8,6,4,2],
	[0,9,8,7,6,5,4,3,2,1]
]
ans = []
for i in range(6):
	digits = [a[i] for a in As]
	cands = set()
	for j in range(6):
		add = set()
		for c in cands:
			add |= set([(c+d)%10 for d in div[int(digits[j])]])
		add |= set(div[int(digits[j])])
		cands |= add
	ans.append(len(cands))
prod = 1
for num in ans:
    prod *= num
print(prod)
0