結果

問題 No.2624 Prediction by Average
ユーザー 👑 rin204rin204
提出日時 2024-02-10 00:50:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 75,860 KB
最終ジャッジ日時 2024-09-28 16:47:45
合計ジャッジ時間 1,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
58,272 KB
testcase_01 AC 63 ms
69,744 KB
testcase_02 AC 72 ms
75,860 KB
testcase_03 AC 34 ms
52,628 KB
testcase_04 AC 66 ms
73,140 KB
testcase_05 AC 66 ms
70,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n, s = map(float, input().split())
    n = int(n)
    s = round(s * 1000)
    s %= 1000
    ans = max(0, n - 1000)
    n = min(n, 1000)

    for k in range(1, n + 1):
        x = (k * (s + 1) - 1) // 1000
        if k * s <= 1000 * x:
            ans += 1
    print(ans)


for _ in range(int(input())):
    solve()
0