結果

問題 No.2784 繰り上がりなし十進和
ユーザー mkawa2mkawa2
提出日時 2024-06-14 22:11:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,273 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 136,988 KB
最終ジャッジ日時 2024-06-14 22:11:42
合計ジャッジ時間 3,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
73,964 KB
testcase_01 AC 54 ms
69,504 KB
testcase_02 TLE -
testcase_03 AC 45 ms
65,292 KB
testcase_04 AC 51 ms
65,280 KB
testcase_05 AC 54 ms
64,768 KB
testcase_06 AC 52 ms
65,280 KB
testcase_07 AC 51 ms
65,024 KB
testcase_08 AC 112 ms
79,744 KB
testcase_09 AC 79 ms
83,968 KB
testcase_10 AC 75 ms
84,208 KB
testcase_11 AC 83 ms
84,480 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 715 ms
94,192 KB
testcase_15 AC 208 ms
85,324 KB
testcase_16 AC 431 ms
87,552 KB
testcase_17 AC 1,508 ms
105,516 KB
testcase_18 AC 1,518 ms
108,124 KB
testcase_19 AC 468 ms
88,724 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000006)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353


def toarr(a):
    arr=[]
    for _ in range(6):
        a,r=divmod(a,10)
        arr.append(r)
    return arr[::-1]

def dadd(a,b):
    aa=toarr(a)
    bb=toarr(b)
    c=0
    for a,b in zip(aa,bb):
        c=c*10+(a+b)%10
    return c

dp=[0]*1000000
st=[]
aa=[]
for _ in range(6):
    a=II()
    if dp[a]:continue
    dp[a]=1
    st.append(a)
    aa.append(a)

while st:
    u=st.pop()
    for a in aa:
        b=dadd(u,a)
        if dp[b]:continue
        dp[b]=1
        st.append(b)

print(sum(dp))
0