結果

問題 No.2784 繰り上がりなし十進和
ユーザー titiatitia
提出日時 2024-06-20 03:08:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 410 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 125,936 KB
最終ジャッジ日時 2024-06-20 03:09:21
合計ジャッジ時間 30,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
65,848 KB
testcase_01 AC 46 ms
67,688 KB
testcase_02 AC 1,889 ms
125,500 KB
testcase_03 AC 43 ms
65,036 KB
testcase_04 AC 43 ms
65,100 KB
testcase_05 AC 44 ms
65,208 KB
testcase_06 AC 44 ms
66,324 KB
testcase_07 AC 44 ms
65,624 KB
testcase_08 AC 52 ms
71,736 KB
testcase_09 AC 55 ms
74,540 KB
testcase_10 AC 55 ms
74,416 KB
testcase_11 AC 54 ms
74,548 KB
testcase_12 AC 1,868 ms
125,404 KB
testcase_13 AC 1,824 ms
125,344 KB
testcase_14 AC 538 ms
91,092 KB
testcase_15 AC 148 ms
84,560 KB
testcase_16 AC 277 ms
86,140 KB
testcase_17 AC 1,219 ms
101,156 KB
testcase_18 AC 1,214 ms
101,252 KB
testcase_19 AC 327 ms
86,128 KB
testcase_20 TLE -
testcase_21 AC 305 ms
86,116 KB
testcase_22 TLE -
testcase_23 AC 173 ms
84,472 KB
testcase_24 AC 506 ms
88,556 KB
testcase_25 AC 1,208 ms
101,156 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 614 ms
90,608 KB
testcase_29 TLE -
testcase_30 AC 620 ms
90,620 KB
testcase_31 AC 273 ms
85,792 KB
testcase_32 AC 1,218 ms
101,000 KB
testcase_33 AC 1,196 ms
101,076 KB
testcase_34 AC 499 ms
88,364 KB
testcase_35 AC 198 ms
84,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

A=[int(input()) for i in range(6)]
U=[10**i for i in range(6)]
def calc(x,y):
    ANS=0
    for i in U:
        c=((x//i + y//i)%10) * i
        #print(i,c)
        ANS+=c
    return ANS

DP=[0]*(10**6)
DP[0]=1
Q=[0]
while Q:
    x=Q.pop()
    for a in A:
        to=calc(a,x)
        if DP[to]==0:
            DP[to]=1
            Q.append(to)

print(sum(DP))

        
0