結果

問題 No.2624 Prediction by Average
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-29 17:56:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 75,984 KB
最終ジャッジ日時 2024-12-29 17:56:50
合計ジャッジ時間 1,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,568 KB
testcase_01 AC 79 ms
73,376 KB
testcase_02 AC 84 ms
75,660 KB
testcase_03 AC 41 ms
52,064 KB
testcase_04 AC 86 ms
75,788 KB
testcase_05 AC 90 ms
75,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2624

def solve(N, S):
    s_array = S.split(".")

    s = int(s_array[0]) * 1000 + int(s_array[1])

    ans = 0
    if N >= 1001:
        ans = N - 1000
    
    for n in range(1, min(N, 1000) + 1):
        s1 = s * n
        s2 = s * n + n
        s1 %= 1000
        s2 %= 1000
        if s1 == 0:
            ans += 1
        elif s2 < s1 and s2 > 0:
            ans += 1
    return ans



def main():
    T = int(input())
    answers  = []
    for _ in range(T):
        N, S = input().split()
        ans = solve(int(N), S)
        answers.append(ans)

    for ans in answers:
        print(ans)


if __name__ == "__main__":
    main()
0