結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | ID |
提出日時 | 2016-06-02 17:38:49 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,016 bytes |
コンパイル時間 | 845 ms |
コンパイル使用メモリ | 87,436 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 05:43:49 |
合計ジャッジ時間 | 2,641 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | WA | - |
ソースコード
#include <algorithm> #include <climits> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <functional> #include <iostream> #include <map> #include <ostream> #include <queue> #include <set> #include <stack> #include <string> #include <vector> #define INF 1000000000 #define rep(i,a,b) for (int i=(a);i<(b);i++) #define rev(i,a,b) for (int i=(a)-1;i>=b;i--) using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef queue<int> qi; typedef vector<int> vi; typedef vector<string> vs; int dx[4] = { 0, 1, 0, -1 }; int dy[4] = { 1, 0, -1, 0 }; int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector<pii> vp; rep(i,0,n) { ll g, d; cin >> g >> d; vp.push_back(pii(i, g-30000*d)); } sort(vp.begin(), vp.end(),greater<pii>()); ll sum = 0; rep(i,0,6) sum += vp[0].second; if(sum > 30000 * 100) { cout << "YES" << endl; rep(i,0,6) cout << vp[0].first << endl; } else cout << "NO" << endl; return 0; }