結果

問題 No.2624 Prediction by Average
ユーザー detteiuudetteiuu
提出日時 2024-08-17 16:57:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 1,286 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 72,192 KB
最終ジャッジ日時 2024-08-17 16:57:28
合計ジャッジ時間 1,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,368 KB
testcase_01 AC 58 ms
66,048 KB
testcase_02 AC 65 ms
66,048 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 77 ms
71,296 KB
testcase_05 AC 76 ms
72,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N, S = input().split()
    N = int(N)
    S = int(S.replace(".", ""))
    cnt = 0
    for i in range(1, min(N+1, 1000)):
        left = S*i
        right = (S+1)*i-1
        if left%1000 == 0 or left//1000 != right//1000:
            cnt += 1
    print(cnt+max(0, N-999))
0