結果

問題 No.2784 繰り上がりなし十進和
ユーザー dp_ijkdp_ijk
提出日時 2024-06-17 23:57:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,444 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 197,100 KB
最終ジャッジ日時 2024-06-17 23:58:34
合計ジャッジ時間 43,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 828 ms
75,948 KB
testcase_01 AC 841 ms
76,252 KB
testcase_02 AC 1,444 ms
197,028 KB
testcase_03 AC 821 ms
76,080 KB
testcase_04 AC 802 ms
76,164 KB
testcase_05 AC 820 ms
76,440 KB
testcase_06 AC 869 ms
76,092 KB
testcase_07 AC 837 ms
76,088 KB
testcase_08 AC 866 ms
76,176 KB
testcase_09 AC 826 ms
76,088 KB
testcase_10 AC 833 ms
76,092 KB
testcase_11 AC 814 ms
76,024 KB
testcase_12 AC 1,379 ms
196,628 KB
testcase_13 AC 1,394 ms
197,040 KB
testcase_14 AC 1,048 ms
105,276 KB
testcase_15 AC 887 ms
82,260 KB
testcase_16 AC 1,041 ms
86,340 KB
testcase_17 AC 1,309 ms
134,164 KB
testcase_18 AC 1,259 ms
134,120 KB
testcase_19 AC 1,050 ms
89,264 KB
testcase_20 AC 1,391 ms
196,700 KB
testcase_21 AC 1,080 ms
86,888 KB
testcase_22 AC 1,413 ms
197,008 KB
testcase_23 AC 1,005 ms
79,012 KB
testcase_24 AC 1,164 ms
97,480 KB
testcase_25 AC 1,323 ms
134,004 KB
testcase_26 AC 1,416 ms
197,044 KB
testcase_27 AC 1,417 ms
196,960 KB
testcase_28 AC 1,196 ms
104,500 KB
testcase_29 AC 1,398 ms
197,100 KB
testcase_30 AC 1,202 ms
104,792 KB
testcase_31 AC 1,040 ms
85,440 KB
testcase_32 AC 1,271 ms
134,312 KB
testcase_33 AC 1,278 ms
134,324 KB
testcase_34 AC 1,140 ms
97,968 KB
testcase_35 AC 936 ms
80,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

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

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

ans = len(S)
print(ans)
0