結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
64,540 KB
testcase_01 AC 47 ms
66,720 KB
testcase_02 AC 1,798 ms
123,952 KB
testcase_03 AC 45 ms
65,088 KB
testcase_04 AC 45 ms
66,072 KB
testcase_05 AC 45 ms
64,916 KB
testcase_06 AC 44 ms
66,136 KB
testcase_07 AC 46 ms
65,592 KB
testcase_08 AC 53 ms
72,028 KB
testcase_09 AC 55 ms
73,984 KB
testcase_10 AC 56 ms
74,488 KB
testcase_11 AC 55 ms
74,060 KB
testcase_12 AC 1,782 ms
124,140 KB
testcase_13 AC 1,771 ms
124,164 KB
testcase_14 AC 499 ms
90,916 KB
testcase_15 AC 143 ms
84,524 KB
testcase_16 AC 273 ms
86,068 KB
testcase_17 AC 1,165 ms
101,520 KB
testcase_18 AC 1,160 ms
101,328 KB
testcase_19 AC 329 ms
86,096 KB
testcase_20 TLE -
testcase_21 AC 275 ms
85,796 KB
testcase_22 TLE -
testcase_23 AC 142 ms
84,336 KB
testcase_24 AC 513 ms
88,456 KB
testcase_25 AC 1,164 ms
101,432 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 583 ms
90,144 KB
testcase_29 TLE -
testcase_30 AC 577 ms
90,284 KB
testcase_31 AC 266 ms
85,796 KB
testcase_32 AC 1,160 ms
101,128 KB
testcase_33 AC 1,124 ms
101,168 KB
testcase_34 AC 519 ms
88,832 KB
testcase_35 AC 166 ms
84,584 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:
        ANS += ((x//i + y//i)%10) * 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