結果
問題 | No.1252 数字根D |
ユーザー | karinohito |
提出日時 | 2023-10-02 15:47:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 998 bytes |
コンパイル時間 | 2,173 ms |
コンパイル使用メモリ | 200,164 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-26 13:47:49 |
合計ジャッジ時間 | 3,221 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 7 ms
5,376 KB |
testcase_05 | AC | 8 ms
5,376 KB |
testcase_06 | AC | 7 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 7 ms
5,376 KB |
testcase_09 | AC | 8 ms
5,376 KB |
testcase_10 | AC | 7 ms
5,376 KB |
testcase_11 | AC | 7 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 7 ms
5,376 KB |
testcase_14 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<time.h> using namespace std; using ll = long long; #define rep(i,n) for(ll i=0;i<ll(n);i++) #define all(A) A.begin(),A.end() using vll = vector<ll>; using vvll = vector<vll>; using vvvll = vector<vvll>; using vvvvll = vector<vvvll>; using vb = vector<bool>; using vvb = vector<vb>; using vvvb = vector<vvb>; using vvvvb = vector<vvvb>; bool DEB = 0; ll arithsum(ll a,ll b,ll d=1){ ll len=(b-a+1); return (a+b)*len/2; } void solve(){ ll D,A,B; cin>>D>>A>>B; if(A==0&&B==0){ cout<<0<<endl; return; } A=max(1ll,A); ll res=0; ll len=(B-A+1); res=(len/(D-1))*arithsum(1,D-1); B-=(len/(D-1))*(D-1); //cout<<A<<" "<<B<<endl; A%=(D-1); if(A==0)A+=(D-1); B%=(D-1); if(B==0)B+=(D-1); if(A<=B){ res+=arithsum(A,B); } else{ res+=arithsum(A,D-1)+arithsum(1,B); } cout<<res<<endl; return; } int main() { ll T; cin>>T; rep(t,T)solve(); }