結果
問題 |
No.3295 Buying Bottled Water
|
ユーザー |
![]() |
提出日時 | 2025-10-09 17:44:59 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 409 bytes |
コンパイル時間 | 2,446 ms |
コンパイル使用メモリ | 275,312 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-10-09 17:45:04 |
合計ジャッジ時間 | 3,691 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/modint> using namespace std; //using namespace atcoder; using ll = long long; //using mint = modint998244353; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll N; cin >> N; ll l=-1, r=N, c; while(r-l>1){ c = (l+r)/2; if (N-c*500<100) r=c; else l=c; } cout << r << endl; return 0; }