結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー nikoshonikosho
提出日時 2023-12-02 17:04:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 577 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 134,400 KB
最終ジャッジ日時 2024-11-19 21:36:04
合計ジャッジ時間 29,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,728 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 41 ms
134,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for i in range(t):
    m = int(input())
    d = list(map(int,input().split()))
    val = 1
    sum_d = sum(d)
    if sum_d>(int(m/10)+1):
        val= int(((10**sum_d)-1)/m)-1
        #print("-> {} <-".format(val))

    while val<=10**18:
        d_check = [d[k] for k in range(9)]
        ch = str(val*m)
        for k in range(len(ch)):
            if d_check[int(ch[k])-1]>0:
                d_check[int(ch[k])-1]-=1
        if sum(d_check)==0:
            #print("==>> {} <<==".format(int(ch)))
            print(int(ch))
            break
        val+=1
0