結果
問題 | No.2562 数字探しゲーム(緑以下コンver.) |
ユーザー | nikosho |
提出日時 | 2023-12-02 16:23:41 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 576 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,240 KB |
実行使用メモリ | 135,424 KB |
最終ジャッジ日時 | 2024-11-19 21:33:45 |
合計ジャッジ時間 | 29,211 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
60,420 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 | 39 ms
135,424 KB |
ソースコード
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