結果
| 問題 | 
                            No.2066 Simple Math !
                             | 
                    
| コンテスト | |
| ユーザー | 
                             pockyny
                         | 
                    
| 提出日時 | 2022-09-03 13:02:56 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 492 bytes | 
| コンパイル時間 | 776 ms | 
| コンパイル使用メモリ | 77,612 KB | 
| 最終ジャッジ日時 | 2025-02-07 02:14:04 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 24 WA * 7 | 
ソースコード
#include <iostream>
#include <atcoder/math>
using namespace std;
using namespace atcoder;
typedef long long ll;
int main(){
    int t; cin >> t;
    while(t){
        t--;
        ll p,q,k; cin >> p >> q >> k;
        ll le = 0,ri = 1000000000000000000;
        while(ri - le>1){
            ll mid = (le + ri)/2;
            ll n = min(mid/p,q - 1);
            if(floor_sum(n + 1,q,p,mid + q - n*p)>=k + 1) ri = mid;
            else le = mid;
        }
        cout << ri << "\n";
    }
}
            
            
            
        
            
pockyny