結果

問題 No.2784 繰り上がりなし十進和
ユーザー ShirotsumeShirotsume
提出日時 2024-06-14 21:34:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,791 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 216,868 KB
最終ジャッジ日時 2024-06-14 21:35:02
合計ジャッジ時間 28,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,680 KB
testcase_01 AC 50 ms
64,640 KB
testcase_02 AC 1,728 ms
216,564 KB
testcase_03 AC 41 ms
55,552 KB
testcase_04 AC 40 ms
55,552 KB
testcase_05 AC 45 ms
62,848 KB
testcase_06 AC 42 ms
55,936 KB
testcase_07 AC 46 ms
62,720 KB
testcase_08 AC 70 ms
76,928 KB
testcase_09 AC 64 ms
76,928 KB
testcase_10 AC 67 ms
77,312 KB
testcase_11 AC 65 ms
77,288 KB
testcase_12 AC 1,738 ms
216,708 KB
testcase_13 AC 1,791 ms
216,720 KB
testcase_14 AC 717 ms
115,244 KB
testcase_15 AC 162 ms
83,712 KB
testcase_16 AC 419 ms
91,524 KB
testcase_17 AC 1,393 ms
154,624 KB
testcase_18 AC 1,525 ms
154,620 KB
testcase_19 AC 388 ms
94,836 KB
testcase_20 AC 1,782 ms
216,700 KB
testcase_21 AC 343 ms
92,236 KB
testcase_22 AC 1,752 ms
216,868 KB
testcase_23 AC 255 ms
82,816 KB
testcase_24 AC 775 ms
110,356 KB
testcase_25 AC 1,416 ms
154,752 KB
testcase_26 AC 1,767 ms
216,544 KB
testcase_27 AC 1,791 ms
216,684 KB
testcase_28 AC 768 ms
115,368 KB
testcase_29 AC 1,775 ms
216,668 KB
testcase_30 AC 745 ms
115,372 KB
testcase_31 AC 392 ms
91,388 KB
testcase_32 AC 955 ms
146,212 KB
testcase_33 AC 952 ms
145,956 KB
testcase_34 AC 809 ms
109,976 KB
testcase_35 AC 248 ms
84,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n = 6

a = [input() for _ in range(6)]

S = set(a)

def plus(x, y):
    z = []
    for i in range(6):
        z.append(str((int(x[i]) + int(y[i])) % 10))
    return ''.join(z)

def dfs(i):
    now = a[i]
    for _ in range(4):
        for v in list(S):
            S.add(plus(v, now))
        now = plus(now, now)
    if i < 5:
        dfs(i + 1)
dfs(0)
        
    
print(len(S))
0