結果

問題 No.1177 余りは?
ユーザー uni_pythonuni_python
提出日時 2020-08-21 22:34:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 134,144 KB
最終ジャッジ日時 2024-10-15 06:28:48
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
87,424 KB
testcase_01 AC 142 ms
134,144 KB
testcase_02 AC 76 ms
79,392 KB
testcase_03 AC 117 ms
111,616 KB
testcase_04 AC 90 ms
87,808 KB
testcase_05 AC 95 ms
91,904 KB
testcase_06 AC 58 ms
67,840 KB
testcase_07 AC 56 ms
66,944 KB
testcase_08 AC 128 ms
118,272 KB
testcase_09 AC 119 ms
118,272 KB
testcase_10 AC 47 ms
60,160 KB
testcase_11 AC 96 ms
95,768 KB
testcase_12 AC 54 ms
65,152 KB
testcase_13 AC 62 ms
71,680 KB
testcase_14 AC 70 ms
76,672 KB
testcase_15 AC 81 ms
84,736 KB
testcase_16 AC 72 ms
78,720 KB
testcase_17 AC 131 ms
125,824 KB
testcase_18 AC 89 ms
91,520 KB
testcase_19 AC 107 ms
105,856 KB
testcase_20 AC 63 ms
71,168 KB
testcase_21 AC 99 ms
96,384 KB
testcase_22 AC 125 ms
118,784 KB
testcase_23 AC 95 ms
91,648 KB
testcase_24 AC 75 ms
79,104 KB
testcase_25 AC 116 ms
111,616 KB
testcase_26 AC 127 ms
118,784 KB
testcase_27 AC 63 ms
71,168 KB
testcase_28 AC 98 ms
95,872 KB
testcase_29 AC 92 ms
91,776 KB
testcase_30 AC 94 ms
91,520 KB
testcase_31 AC 107 ms
105,600 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    p,k=MI()
    
    def calc_se():
        import itertools
        p=7
        k=1
        ans=0
        for ite in itertools.product([0,1,2,3,4,5,6,7,8,9], repeat=p-1):
            temp=0
            for i in range(p-1):
                temp+=ite[i]*(i+1)
            if temp%p==k:
                print(ite)
                ans+=1
        print(ans)
        
        
    ans=[]
    tar=10
        
    for i in range(p-1):
        temp=tar//p
        rem=tar%p
        ans.append(temp)
        tar=rem*10
        
    ans2=0
    po=1
    for i in range(p-2,-1,-1):
        aaa=ans[i]*po
        ans2=(ans2+aaa)%mod
        po=(po*10)%mod
        
    print(ans2)
        
        
    


main()
0