結果

問題 No.2784 繰り上がりなし十進和
ユーザー ypwwypww
提出日時 2024-06-15 11:19:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,140 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-06-15 11:20:03
合計ジャッジ時間 39,958 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 960 ms
83,888 KB
testcase_01 AC 941 ms
83,968 KB
testcase_02 AC 944 ms
83,944 KB
testcase_03 AC 950 ms
83,584 KB
testcase_04 AC 919 ms
83,624 KB
testcase_05 AC 969 ms
83,840 KB
testcase_06 AC 918 ms
83,908 KB
testcase_07 AC 941 ms
83,840 KB
testcase_08 AC 949 ms
83,764 KB
testcase_09 AC 947 ms
83,840 KB
testcase_10 AC 906 ms
83,760 KB
testcase_11 AC 966 ms
84,224 KB
testcase_12 AC 925 ms
83,876 KB
testcase_13 AC 951 ms
83,872 KB
testcase_14 AC 921 ms
83,744 KB
testcase_15 AC 945 ms
84,224 KB
testcase_16 AC 1,049 ms
83,800 KB
testcase_17 AC 1,114 ms
83,912 KB
testcase_18 AC 1,075 ms
83,752 KB
testcase_19 AC 989 ms
83,584 KB
testcase_20 AC 1,106 ms
83,892 KB
testcase_21 AC 1,111 ms
83,712 KB
testcase_22 AC 1,107 ms
83,712 KB
testcase_23 AC 1,063 ms
83,584 KB
testcase_24 AC 1,103 ms
83,896 KB
testcase_25 AC 1,107 ms
83,584 KB
testcase_26 AC 1,100 ms
83,732 KB
testcase_27 AC 1,140 ms
83,804 KB
testcase_28 AC 1,112 ms
83,684 KB
testcase_29 AC 1,116 ms
83,840 KB
testcase_30 AC 1,058 ms
83,880 KB
testcase_31 AC 1,062 ms
83,712 KB
testcase_32 AC 1,085 ms
83,908 KB
testcase_33 AC 1,127 ms
83,712 KB
testcase_34 AC 1,127 ms
83,808 KB
testcase_35 AC 1,033 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [input() for _ in range(6)]
v = [False] * 1000000
for i in range(1, 11**6):
    x = [0] * 6
    for j in range(6):
        cnt = (i // (11 ** j)) % 11
        for k in range(6):
            x[k] += (ord(a[j][k]) - ord('0')) * cnt
            x[k] %= 10
    off = 1
    now = 0
    for j in range(6):
        now += x[j] * off
        off *= 10
    v[now] = True

print(v.count(True))
0