結果

問題 No.2784 繰り上がりなし十進和
ユーザー tassei903tassei903
提出日時 2024-06-21 00:27:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,413 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 240,736 KB
最終ジャッジ日時 2024-06-21 00:28:35
合計ジャッジ時間 49,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,168 ms
76,272 KB
testcase_01 AC 1,147 ms
76,080 KB
testcase_02 AC 1,257 ms
240,696 KB
testcase_03 AC 1,096 ms
76,364 KB
testcase_04 AC 1,130 ms
76,124 KB
testcase_05 AC 1,145 ms
76,408 KB
testcase_06 AC 1,121 ms
76,152 KB
testcase_07 AC 1,123 ms
76,188 KB
testcase_08 AC 1,128 ms
76,236 KB
testcase_09 AC 1,145 ms
76,492 KB
testcase_10 AC 1,116 ms
76,140 KB
testcase_11 AC 1,146 ms
76,268 KB
testcase_12 AC 1,311 ms
240,380 KB
testcase_13 AC 1,222 ms
240,108 KB
testcase_14 AC 1,234 ms
115,600 KB
testcase_15 AC 1,194 ms
84,132 KB
testcase_16 AC 1,282 ms
90,204 KB
testcase_17 AC 1,384 ms
155,948 KB
testcase_18 AC 1,323 ms
155,744 KB
testcase_19 AC 1,267 ms
94,204 KB
testcase_20 AC 1,365 ms
240,736 KB
testcase_21 AC 1,310 ms
89,952 KB
testcase_22 AC 1,390 ms
240,228 KB
testcase_23 AC 1,233 ms
79,960 KB
testcase_24 AC 1,331 ms
106,092 KB
testcase_25 AC 1,360 ms
155,600 KB
testcase_26 AC 1,408 ms
240,444 KB
testcase_27 AC 1,413 ms
240,460 KB
testcase_28 AC 1,337 ms
114,352 KB
testcase_29 AC 1,364 ms
240,512 KB
testcase_30 AC 1,345 ms
114,776 KB
testcase_31 AC 1,273 ms
88,928 KB
testcase_32 AC 1,344 ms
155,764 KB
testcase_33 AC 1,356 ms
155,460 KB
testcase_34 AC 1,332 ms
105,780 KB
testcase_35 AC 1,238 ms
81,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
a = [ni() for i in range(6)]

def f(a, b):
    r = 0
    for i in range(6):
        r += (a + b) % 10 * (10**i)
        a //= 10
        b //= 10
    return r

b = []
for i in range(6):
    s = [0]
    for j in range(10):
        s.append(f(s[-1], a[i]))
    b.append(s)
ans = set() 
from itertools import product
for p in product(range(10), repeat=6):
    s = 0
    for i in range(6):
        s = f(s, b[i][p[i]])
    ans.add(s)
#print(ans)
print(len(ans))
0