結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー ゼットゼット
提出日時 2023-12-20 23:46:59
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 240 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-11-19 21:40:48
合計ジャッジ時間 1,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 121 ms
76,416 KB
testcase_05 AC 159 ms
77,952 KB
testcase_06 AC 114 ms
76,668 KB
testcase_07 AC 117 ms
76,308 KB
testcase_08 AC 121 ms
76,716 KB
testcase_09 AC 151 ms
77,948 KB
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
  M=int(input())
  A=list(map(int,input().split()))
  c=''
  for i in range(1,10):
    x=A[i-1]
    for y in range(x):
      c=c+str(i)
  c=int(c)
  ans=c*10**9
  z=ans%M
  if z>0:
    ans+=M-z
  print(ans)
0