結果

問題 No.2624 Prediction by Average
ユーザー miscalcmiscalc
提出日時 2024-02-10 01:12:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 73,176 KB
最終ジャッジ日時 2024-09-28 16:50:23
合計ジャッジ時間 1,009 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,024 KB
testcase_01 AC 66 ms
66,676 KB
testcase_02 AC 64 ms
67,824 KB
testcase_03 AC 34 ms
52,304 KB
testcase_04 AC 75 ms
73,176 KB
testcase_05 AC 75 ms
73,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divceil(a, b):
  return (a + b - 1) // b

t = int(input())
for _ in range(t):
  n, s = input().split()
  n = int(n)
  s = int(s.split(".")[1])
  ans = 0
  for i in range(min(n + 1, 1000)):
    l, r = divceil(s * i, 1000), divceil((s + 1) * i, 1000)
    if r - l >= 1:
      ans += 1
  ans += max(0, n - 999)
  print(ans)
0