結果

問題 No.2784 繰り上がりなし十進和
ユーザー 👑 KA37RIKA37RI
提出日時 2024-06-14 22:52:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 277 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 206,996 KB
最終ジャッジ日時 2024-06-14 22:53:49
合計ジャッジ時間 75,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,968 ms
76,160 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 1,507 ms
75,892 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 WA -
testcase_21 TLE -
testcase_22 WA -
testcase_23 TLE -
testcase_24 WA -
testcase_25 WA -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 TLE -
testcase_33 WA -
testcase_34 TLE -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
	
a = [int(input()) for _ in range(6)]

st = set()
for k in itertools.product(range(10), repeat=6):
	s = 0
	for i in range(6):
		t = 0
		for j in range(6):
			t += (a[i] // 10 ** j * k[j] + s // 10 ** j) % 10 * 10 ** j
		s = t
		
	st.add(s)
    
print(len(st))
0