結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
65,164 KB
testcase_01 AC 48 ms
67,284 KB
testcase_02 AC 1,883 ms
124,068 KB
testcase_03 AC 50 ms
64,940 KB
testcase_04 AC 53 ms
66,712 KB
testcase_05 AC 53 ms
64,804 KB
testcase_06 AC 52 ms
65,748 KB
testcase_07 AC 49 ms
65,764 KB
testcase_08 AC 62 ms
71,100 KB
testcase_09 AC 66 ms
75,592 KB
testcase_10 AC 60 ms
75,392 KB
testcase_11 AC 63 ms
75,160 KB
testcase_12 AC 1,885 ms
124,076 KB
testcase_13 AC 1,817 ms
124,344 KB
testcase_14 AC 532 ms
90,776 KB
testcase_15 AC 147 ms
84,520 KB
testcase_16 AC 277 ms
86,140 KB
testcase_17 AC 1,173 ms
101,408 KB
testcase_18 AC 1,165 ms
101,600 KB
testcase_19 AC 319 ms
86,044 KB
testcase_20 TLE -
testcase_21 AC 273 ms
85,888 KB
testcase_22 TLE -
testcase_23 AC 146 ms
84,200 KB
testcase_24 AC 526 ms
88,720 KB
testcase_25 AC 1,161 ms
101,168 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 618 ms
90,396 KB
testcase_29 TLE -
testcase_30 AC 573 ms
90,292 KB
testcase_31 AC 264 ms
86,068 KB
testcase_32 AC 1,168 ms
101,388 KB
testcase_33 AC 1,175 ms
101,220 KB
testcase_34 AC 517 ms
88,504 KB
testcase_35 AC 167 ms
84,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
B=10
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:
        ANS += ((x//i + y//i)%B) * i
    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