結果

問題 No.2784 繰り上がりなし十進和
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-14 22:08:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 618 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 200,096 KB
最終ジャッジ日時 2024-06-14 22:09:57
合計ジャッジ時間 9,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,379 ms
77,572 KB
testcase_01 AC 1,455 ms
77,060 KB
testcase_02 TLE -
testcase_03 AC 1,386 ms
77,036 KB
testcase_04 AC 1,401 ms
77,696 KB
testcase_05 AC 1,378 ms
76,932 KB
testcase_06 AC 1,439 ms
77,188 KB
testcase_07 AC 1,418 ms
77,696 KB
testcase_08 AC 1,480 ms
77,384 KB
testcase_09 AC 1,368 ms
77,360 KB
testcase_10 AC 1,393 ms
77,700 KB
testcase_11 AC 1,413 ms
77,296 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,612 ms
106,816 KB
testcase_15 AC 1,444 ms
83,704 KB
testcase_16 AC 1,678 ms
88,140 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,692 ms
90,448 KB
testcase_20 TLE -
testcase_21 AC 1,664 ms
87,804 KB
testcase_22 TLE -
testcase_23 AC 1,580 ms
80,964 KB
testcase_24 AC 1,872 ms
100,692 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,823 ms
106,056 KB
testcase_29 TLE -
testcase_30 AC 1,847 ms
105,936 KB
testcase_31 AC 1,758 ms
88,412 KB
testcase_32 TLE -
testcase_33 AC 1,984 ms
137,512 KB
testcase_34 AC 1,817 ms
100,560 KB
testcase_35 AC 1,532 ms
82,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
A = [input() for i in range(6)]
AA = [list(map(int, list(a))) for a in A]
canvisit = set()


def f(a1, a2, a3, a4, a5, a6):
    now = [0] * 6
    if a1 == 0 and a2 == 0 and a3 == 0 and a4 == 0 and a5 == 0 and a6 == 0:
        return -1
    for i in range(6):
        now[i] = AA[0][i] * a1 + AA[1][i] * a2 + AA[2][i] * a3 + AA[3][i] * a4 + AA[4][i] * a5 + AA[5][i] * a6
        now[i] %= 10
    return ''.join(map(str, now))


for a1, a2, a3, a4, a5, a6 in product(range(12), repeat=6):
    now = f(a1, a2, a3, a4, a5, a6)
    if now != -1:
        canvisit.add(now)

print(len(canvisit))
0