結果
問題 | No.1440 The Quiz Competition |
ユーザー | 沙耶花 |
提出日時 | 2021-03-26 22:52:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,230 bytes |
コンパイル時間 | 4,359 ms |
コンパイル使用メモリ | 262,112 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-06 16:46:21 |
合計ジャッジ時間 | 5,216 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000001 long long get(long long n){ return n*(n+1)/2; } long long get(long long n,long long w){ return get(w/n)*n + (w%n)*(w/n+1); } int main(){ int _t; cin>>_t; rep(_,_t){ long long N,A,W,K; scanf("%lld %lld %lld %lld",&N,&A,&W,&K); long long ok = -1,ng = Inf; while(ng-ok>1){ long long mid = (ok+ng)/2; long long cur = A; cur -= (mid+1) * (K-1); cur -= mid; if(cur<0){ ng = mid; } else if(K!=N){ ok = mid; } else{ cur -= get(N,W); if(cur<0)ng = mid; else ok = mid; } } if(ok!=-1){ cout<<ok<<endl; continue; } if(K!=N){ if(N-K<=W){ cout<<-1<<endl; } else{ cout<<":("<<endl; } continue; } else{ if(W==0){ cout<<":("<<endl; continue; } long long ok = W+1,ng = 0; while(ok-ng>1){ long long mid = (ok+ng)/2; long long cur = W; cur -= mid; if(cur<=0)ok = mid; else ng = mid; } cout<<ok<<endl; } } return 0; }