結果
問題 | No.853 河原の石 |
ユーザー | Enjapma_kyopro |
提出日時 | 2019-07-06 17:31:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,745 bytes |
コンパイル時間 | 1,366 ms |
コンパイル使用メモリ | 96,024 KB |
実行使用メモリ | 17,220 KB |
最終ジャッジ日時 | 2024-09-25 11:06:21 |
合計ジャッジ時間 | 2,983 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
15,424 KB |
testcase_01 | AC | 5 ms
15,296 KB |
testcase_02 | AC | 5 ms
15,684 KB |
testcase_03 | AC | 6 ms
15,176 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 6 ms
15,176 KB |
testcase_07 | AC | 6 ms
15,812 KB |
testcase_08 | AC | 6 ms
16,068 KB |
testcase_09 | AC | 6 ms
15,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 5 ms
16,072 KB |
testcase_12 | WA | - |
testcase_13 | AC | 5 ms
15,684 KB |
testcase_14 | WA | - |
testcase_15 | AC | 6 ms
16,196 KB |
testcase_16 | AC | 6 ms
16,836 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 5 ms
16,324 KB |
testcase_20 | WA | - |
testcase_21 | AC | 5 ms
16,580 KB |
testcase_22 | AC | 6 ms
15,816 KB |
testcase_23 | AC | 6 ms
15,048 KB |
testcase_24 | AC | 6 ms
15,684 KB |
testcase_25 | WA | - |
testcase_26 | AC | 6 ms
16,452 KB |
testcase_27 | AC | 7 ms
15,556 KB |
testcase_28 | AC | 7 ms
15,300 KB |
testcase_29 | AC | 7 ms
15,424 KB |
testcase_30 | AC | 6 ms
16,068 KB |
testcase_31 | AC | 6 ms
16,072 KB |
testcase_32 | WA | - |
testcase_33 | AC | 7 ms
15,940 KB |
testcase_34 | AC | 7 ms
16,708 KB |
testcase_35 | AC | 6 ms
15,560 KB |
testcase_36 | WA | - |
testcase_37 | AC | 5 ms
15,684 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 7 ms
16,068 KB |
testcase_42 | AC | 6 ms
16,196 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 6 ms
16,964 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 6 ms
16,704 KB |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | AC | 6 ms
16,068 KB |
testcase_53 | AC | 7 ms
15,048 KB |
testcase_54 | AC | 382 ms
15,936 KB |
testcase_55 | AC | 6 ms
15,556 KB |
testcase_56 | AC | 31 ms
17,092 KB |
testcase_57 | WA | - |
testcase_58 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:156:20: warning: ‘h2’ may be used uninitialized [-Wmaybe-uninitialized] 156 | ll h2 = add - h2; | ^~
ソースコード
#include <iostream> #include <cassert> #include <climits> #include <bitset> #include <stack> #include <queue> #include <iomanip> #include <limits> #include <string> #include <cmath> #include <set> #include <map> #include <math.h> #include <algorithm> #include <vector> #include <string.h> #include <tuple> #include <time.h> #include <random> using namespace std; typedef long long ll; typedef pair<ll,ll> P; long long int INF = 3e18; double Pi = 3.1415926535897932384626; vector<ll> G[500005]; //vector<P> tree[500010]; priority_queue <ll> pql; priority_queue <P> pqp; //big priority queue priority_queue <ll,vector<ll>,greater<ll> > pqls; priority_queue <P,vector<P>,greater<P> > pqps; //small priority queue //top pop int dx[8]={1,0,-1,0,1,1,-1,-1}; int dy[8]={0,1,0,-1,1,-1,-1,1}; char dir[] = "DRUL"; //ll bit[500005]; //↓,→,↑,← #define p(x) cout<<x<<endl; #define el cout<<endl; #define pe(x) cout<<(x)<<" "; #define ps(x) cout<<fixed<<setprecision(25)<<x<<endl; #define pu(x) cout<<(x); #define pb push_back #define lb lower_bound #define ub upper_bound ll mod = 1000000007; ll rui(ll number1,ll number2){ if(number2 == 0){ return 1; }else{ ll number3 = rui(number1,number2 / 2); number3 *= number3; number3 %= mod; if(number2%2==1){ number3 *= number1; number3 %= mod; } return number3; } } ll gcd(ll number1,ll number2){ if(number1 > number2){ swap(number1,number2); } if(number1 == 0 || number1 == number2){ return number2; }else{ return gcd(number2 % number1,number1); } } void YES(bool condition){ if(condition){ p("YES"); }else{ p("NO"); } return; } void Yes(bool condition){ if(condition){ p("Yes"); }else{ p("No"); } return; } //ll fact[800005],rfact[800005]; /* void c3_init(){ fact[0] = rfact[0] = 1; for(ll i=1; i<=800000; i++){ fact[i] = (fact[i-1]*i) % mod; } rfact[800000] = rui(fact[800000],mod - 2); for(ll i=800000; i>=1; i--){ rfact[i-1] = rfact[i] * i; rfact[i-1] %= mod; } return;} ll c3(ll n,ll r){ return (((fact[n] * rfact[r]) % mod) * rfact[n-r]) % mod;} */ ll n,m,num,sum,ans,a,b,c,d,e,g,h,w,i,j,k,q; ll x[300005],y[300005],z[300005]; char s[500005],t[500005]; bool isok; int main(){ cin >> h >> w; if(w < 0)w *= -1; ll add = 1; if(h > w){ while(1){ if(a + add <= w - 1){ a += add; ans += add * add; }else{ ans += (w - 1 - a) * add; break; } if(add < h){ add++; } //pe(a);p(ans); } ans += h; }else{ add = 0; while(1){ add += 1; //pe(a); if(a + add <= h){ a += add; ans += add * add; }else{ ll h1 = h - a; ll h2 = add - h2; ll unit = (h1 + h2) * add - h2; while(1){ if(a + h1 + h2 <= w - 1){ sum += unit; a += h1 + h2; }else{ break; } } if(a + h1 <= w - 1 && a + h1 + h2 > w - 1){ ans += h1 * add; ans += (w - 1 - h1 - a) * (add - 1); }else{ ans += (w - 1 - a) * add; } ans += sum; ans += h; break; } } } p(ans); return 0; }