結果

問題 No.2562 数字探しゲーム(緑以下コンver.)
ユーザー ゼットゼット
提出日時 2023-12-20 23:46:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-09-27 10:17:10
合計ジャッジ時間 2,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,352 KB
testcase_01 AC 34 ms
53,160 KB
testcase_02 AC 36 ms
52,648 KB
testcase_03 AC 34 ms
52,644 KB
testcase_04 AC 111 ms
76,364 KB
testcase_05 AC 156 ms
77,824 KB
testcase_06 AC 114 ms
76,444 KB
testcase_07 AC 116 ms
76,456 KB
testcase_08 AC 120 ms
76,372 KB
testcase_09 AC 145 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

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