結果

問題 No.2784 繰り上がりなし十進和
ユーザー dp_ijkdp_ijk
提出日時 2024-06-17 23:55:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 320 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 239,268 KB
最終ジャッジ日時 2024-06-17 23:56:03
合計ジャッジ時間 33,926 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 858 ms
76,640 KB
testcase_01 AC 813 ms
76,104 KB
testcase_02 AC 1,090 ms
238,652 KB
testcase_03 AC 800 ms
76,440 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 841 ms
76,056 KB
testcase_10 AC 805 ms
76,384 KB
testcase_11 WA -
testcase_12 AC 975 ms
238,648 KB
testcase_13 AC 1,004 ms
239,268 KB
testcase_14 AC 928 ms
115,632 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

As = [list(map(int, input())) for _ in range(6)]

d = set()
for C in product(list(range(10)), repeat=6):
   X = [0]*6
   for A in As:
      for i in range(6):
         X[i] += C[i] * A[i]
   X = [x%10 for x in X]
   X.reverse()
   d.add(int("".join(map(str, X))))

ans = len(d)
print(ans)
0