結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー rotti_coderrotti_coder
提出日時 2023-11-21 01:29:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 430 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 135,512 KB
最終ジャッジ日時 2024-11-19 21:27:23
合計ジャッジ時間 34,945 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
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 34 ms
135,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for i in range(int(input())):
  a=int(input())
  s=list(map(int,input().split()))
  count=0
  for ipp in range(100000000000000):
    count+=a
    hako=sorted(list(str(count)))
    amount=[0]*9
    for k in range(len(hako)):
      if hako[k]=="0":
        continue
      amount[int(hako[k])-1]+=1
    check=0
    for k in range(9):
      if amount[k]<s[k]:
        check=1
        break
    if check==0:
      break
  print(count)
0