結果
問題 | No.2624 Prediction by Average |
ユーザー | t98slider |
提出日時 | 2024-02-09 22:08:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 566 bytes |
コンパイル時間 | 1,749 ms |
コンパイル使用メモリ | 167,256 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-09-28 15:25:12 |
合計ジャッジ時間 | 6,037 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 1,286 ms
6,820 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ int T; cin >> T; while(T--){ ll n, s0, s1, s = 0; scanf("%lld %lld.%lld", &n, &s0, &s1); s = s0 * 1000 + s1; ll ans = 0, c = min(n, 1000ll); ans += max(0ll, n - 1000); for(ll i = 1; i <= c; i++){ for(ll j = s0 * i; j <= (s0 + 1) * i; j++){ if((j * 1000) / i == s){ ans++; break; } } } cout << ans << '\n'; } }