結果
問題 |
No.91 赤、緑、青の石
|
ユーザー |
![]() |
提出日時 | 2014-12-07 21:02:01 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,467 bytes |
コンパイル時間 | 712 ms |
コンパイル使用メモリ | 76,300 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-11 17:08:26 |
合計ジャッジ時間 | 1,683 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 WA * 15 |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstdio> #include <cstring> #include <ctime> #include <string> #include <vector> #include <stack> #include <queue> #include <map> #include <set> #include <algorithm> #include <cmath> #include <sstream> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<string> vs; #define all(c) (c).begin(), (c).end() #define loop(i,a,b) for(ll i=a; i<ll(b); i++) #define rep(i,b) loop(i,0,b) #ifdef DEBUG #define dump(...) (cerr<<#__VA_ARGS__<<" = "<<(DUMP(),__VA_ARGS__).str()<<" ["<<__LINE__<<"]"<<endl) struct DUMP:ostringstream{template<class T>DUMP &operator,(const T&t){if(this->tellp())*this<<", ";*this<<t;return *this;}}; #else #define dump(...) #endif typedef double R; const double pi = acos(-1); // 1 1 1 // 1 3 // 5 int main(){ int a[3]; while(cin>>a[0]){ rep(i,2)cin>>a[i+1]; sort(a,a+3); int ans=0; { int x = min({a[0],a[1],a[2]}); ans += x; rep(i,3)a[i]-=x; dump(x); } { int x = min(a[1],a[2]/3); ans += x; a[1]-=x; a[2]-=x*3; } { int y = min(a[2],a[1]/3); ans += y; a[0]-=y; a[1]-=y*3; } { ans += a[1]/5 + a[2]/5; } cout << ans << endl; } }