結果

問題 No.2784 繰り上がりなし十進和
ユーザー 👑 KA37RIKA37RI
提出日時 2024-06-14 22:16:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 356 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 302,820 KB
最終ジャッジ日時 2024-06-14 22:17:46
合計ジャッジ時間 12,197 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,696 ms
76,800 KB
testcase_01 AC 1,675 ms
76,544 KB
testcase_02 TLE -
testcase_03 AC 1,770 ms
76,828 KB
testcase_04 AC 1,660 ms
76,972 KB
testcase_05 AC 1,678 ms
76,412 KB
testcase_06 AC 1,662 ms
76,640 KB
testcase_07 AC 1,680 ms
76,836 KB
testcase_08 AC 1,762 ms
76,892 KB
testcase_09 AC 1,783 ms
76,668 KB
testcase_10 AC 1,847 ms
76,768 KB
testcase_11 AC 1,674 ms
76,880 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,937 ms
157,528 KB
testcase_15 AC 1,742 ms
93,404 KB
testcase_16 AC 1,885 ms
108,032 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,857 ms
115,532 KB
testcase_20 TLE -
testcase_21 AC 1,828 ms
108,004 KB
testcase_22 TLE -
testcase_23 AC 1,794 ms
87,932 KB
testcase_24 AC 1,999 ms
141,184 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,909 ms
107,708 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 1,861 ms
92,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

def xadd(a, b):
	return [(a[i] + b[i]) % 10 for i in range(6)]
	
def xmul(a, x):
	return [a[i] * x % 10 for i in range(6)]
	
a = [[int(x) for x in input()] for _ in range(6)]

st = set()
for k in itertools.product(range(10), repeat=6):
	s = [0] * 6
	for i in range(6):
		s = xadd(xmul(a[i], k[i]), s)
	st.add(tuple(s))
    
print(len(st))
0