結果
問題 |
No.3295 Buying Bottled Water
|
ユーザー |
![]() |
提出日時 | 2025-10-09 17:44:35 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 408 bytes |
コンパイル時間 | 3,071 ms |
コンパイル使用メモリ | 275,316 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-10-09 17:44:40 |
合計ジャッジ時間 | 3,876 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 WA * 1 |
ソースコード
#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=0, 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; }