結果
問題 | No.2624 Prediction by Average |
ユーザー | 👑 AngrySadEight |
提出日時 | 2024-01-17 01:22:39 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 74 ms / 2,000 ms |
コード長 | 313 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 82,168 KB |
実行使用メモリ | 72,828 KB |
最終ジャッジ日時 | 2024-09-28 03:07:03 |
合計ジャッジ時間 | 1,128 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
58,156 KB |
testcase_01 | AC | 64 ms
66,328 KB |
testcase_02 | AC | 64 ms
66,784 KB |
testcase_03 | AC | 33 ms
52,668 KB |
testcase_04 | AC | 72 ms
72,828 KB |
testcase_05 | AC | 74 ms
71,712 KB |
ソースコード
T = int(input()) for _ in range(T): N, S = map(str, input().split()) IN = int(N) IS = int(S[:-4]) * 1000 + int(S[-3:]) ans = 0 for i in range(min(IN + 1, 1000)): if (IS * i - 1) // 1000 != ((IS + 1) * i - 1) // 1000: ans += 1 ans += max(0, IN - 1000 + 1) print(ans)