結果

問題 No.2784 繰り上がりなし十進和
ユーザー titiatitia
提出日時 2024-06-20 03:05:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 414 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 126,004 KB
最終ジャッジ日時 2024-06-20 03:05:38
合計ジャッジ時間 37,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
64,912 KB
testcase_01 AC 48 ms
68,032 KB
testcase_02 TLE -
testcase_03 AC 43 ms
65,296 KB
testcase_04 AC 62 ms
65,784 KB
testcase_05 AC 42 ms
65,536 KB
testcase_06 AC 42 ms
64,664 KB
testcase_07 AC 43 ms
65,680 KB
testcase_08 AC 55 ms
73,604 KB
testcase_09 AC 58 ms
76,812 KB
testcase_10 AC 57 ms
76,840 KB
testcase_11 AC 59 ms
76,404 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 640 ms
91,716 KB
testcase_15 AC 183 ms
84,796 KB
testcase_16 AC 338 ms
85,776 KB
testcase_17 AC 1,451 ms
101,292 KB
testcase_18 AC 1,448 ms
101,284 KB
testcase_19 AC 400 ms
86,452 KB
testcase_20 TLE -
testcase_21 AC 332 ms
86,200 KB
testcase_22 TLE -
testcase_23 AC 170 ms
84,412 KB
testcase_24 AC 607 ms
88,444 KB
testcase_25 AC 1,464 ms
101,300 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 749 ms
90,972 KB
testcase_29 TLE -
testcase_30 AC 729 ms
90,712 KB
testcase_31 AC 329 ms
85,892 KB
testcase_32 AC 1,472 ms
101,328 KB
testcase_33 AC 1,436 ms
101,284 KB
testcase_34 AC 612 ms
88,312 KB
testcase_35 AC 200 ms
84,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

A=[int(input()) for i in range(6)]

def calc(x,y):
    ANS=0
    for i in range(6):
        c=((x//(10**i)%10 + y//(10**i)%10)%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