結果

問題 No.2784 繰り上がりなし十進和
ユーザー ニックネームニックネーム
提出日時 2024-06-14 22:29:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 979 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 239,744 KB
最終ジャッジ日時 2024-06-14 22:30:23
合計ジャッジ時間 31,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 745 ms
76,288 KB
testcase_01 AC 724 ms
76,160 KB
testcase_02 AC 880 ms
239,568 KB
testcase_03 AC 630 ms
76,168 KB
testcase_04 AC 739 ms
76,288 KB
testcase_05 AC 716 ms
76,032 KB
testcase_06 AC 748 ms
75,904 KB
testcase_07 AC 654 ms
75,904 KB
testcase_08 AC 735 ms
76,160 KB
testcase_09 AC 733 ms
76,288 KB
testcase_10 AC 706 ms
76,032 KB
testcase_11 AC 739 ms
76,160 KB
testcase_12 AC 891 ms
239,744 KB
testcase_13 AC 839 ms
239,396 KB
testcase_14 AC 781 ms
114,964 KB
testcase_15 AC 744 ms
83,968 KB
testcase_16 AC 804 ms
89,728 KB
testcase_17 AC 883 ms
153,816 KB
testcase_18 AC 867 ms
154,624 KB
testcase_19 AC 823 ms
93,696 KB
testcase_20 AC 951 ms
239,616 KB
testcase_21 AC 792 ms
89,848 KB
testcase_22 AC 942 ms
239,552 KB
testcase_23 AC 764 ms
79,492 KB
testcase_24 AC 832 ms
105,088 KB
testcase_25 AC 856 ms
154,072 KB
testcase_26 AC 979 ms
239,600 KB
testcase_27 AC 973 ms
239,328 KB
testcase_28 AC 828 ms
114,404 KB
testcase_29 AC 903 ms
239,348 KB
testcase_30 AC 859 ms
114,208 KB
testcase_31 AC 779 ms
88,448 KB
testcase_32 AC 861 ms
153,940 KB
testcase_33 AC 875 ms
154,192 KB
testcase_34 AC 836 ms
105,088 KB
testcase_35 AC 753 ms
81,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n = 6; a = [[] for _ in range(n)]; s = set()
for _ in range(n):
    b = input(); s.add(int(b))
    for i,v in enumerate(b): a[i].append(int(v))
for p in product(range(10),repeat=n):
    x = [0]*n
    for i,b in enumerate(a):
        for u,v in zip(p,b): x[i] += u*v
    s.add(sum((v%10)*10**(n-i-1) for i,v in enumerate(x)))
print(len(s))
0