結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
65,756 KB
testcase_01 AC 49 ms
67,584 KB
testcase_02 AC 1,921 ms
125,692 KB
testcase_03 AC 44 ms
64,968 KB
testcase_04 AC 44 ms
65,628 KB
testcase_05 AC 44 ms
66,220 KB
testcase_06 AC 45 ms
65,420 KB
testcase_07 AC 43 ms
65,404 KB
testcase_08 AC 54 ms
72,164 KB
testcase_09 AC 57 ms
74,960 KB
testcase_10 AC 57 ms
74,564 KB
testcase_11 AC 56 ms
74,184 KB
testcase_12 AC 1,933 ms
125,544 KB
testcase_13 AC 1,923 ms
125,456 KB
testcase_14 AC 530 ms
90,748 KB
testcase_15 AC 151 ms
84,780 KB
testcase_16 AC 284 ms
86,008 KB
testcase_17 AC 1,213 ms
101,636 KB
testcase_18 AC 1,214 ms
101,436 KB
testcase_19 AC 357 ms
86,312 KB
testcase_20 TLE -
testcase_21 AC 296 ms
86,340 KB
testcase_22 TLE -
testcase_23 AC 153 ms
84,624 KB
testcase_24 AC 541 ms
88,420 KB
testcase_25 AC 1,175 ms
101,452 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 627 ms
90,612 KB
testcase_29 TLE -
testcase_30 AC 633 ms
90,620 KB
testcase_31 AC 276 ms
85,768 KB
testcase_32 AC 1,227 ms
101,064 KB
testcase_33 AC 1,240 ms
101,076 KB
testcase_34 AC 521 ms
88,432 KB
testcase_35 AC 173 ms
84,484 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%10 + y//i%10)%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