結果
問題 | No.2526 Kth Not-divisible Number |
ユーザー | karinohito |
提出日時 | 2023-11-03 22:49:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 319 bytes |
コンパイル時間 | 2,282 ms |
コンパイル使用メモリ | 200,424 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-25 21:12:45 |
合計ジャッジ時間 | 7,948 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 516 ms
5,376 KB |
testcase_04 | AC | 502 ms
5,376 KB |
testcase_05 | AC | 504 ms
5,376 KB |
testcase_06 | AC | 505 ms
5,376 KB |
testcase_07 | AC | 502 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; void solve(){ ll A,B,K; cin>>A>>B>>K; ll G=A/gcd(A,B)*B,L=0,R=4e18; while(R-L>1){ ll M=(R+L)/2,a=(M/A)+(M/B)-(M/G); (M-a<=K?L:R)=M; } cout<<L<<endl; } int main() { ll T; cin>>T; while(T--)solve(); }