結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | 158b |
提出日時 | 2015-06-26 22:32:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 790 bytes |
コンパイル時間 | 2,167 ms |
コンパイル使用メモリ | 75,216 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 17:45:25 |
合計ジャッジ時間 | 2,360 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 0 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <functional> #include <string> #include <climits> #include <vector> #include <numeric> #include <complex> #include <map> #include <bitset> using namespace std; //#define __int64 long long #define long __int64 #define REP(i,a,b) for(int i=a;i<b;i++) #define rep(i,n) REP(i,0,n) const int Vecy[4] = {0,-1,0,1}; const int Vecx[4] = {1,0,-1,0}; int main(){ int n; double g[1000],d[1000],score[1000]; int max = 0; cin >> n; for(int i=0; i<n; i++){ cin >> g[i] >> d[i]; score[i] = g[i] - 30000.0 * d[i]; if(max > score[max]){ max = i; } } if(score[max] * 6.0 + 0.00001 >= 3000000){ cout << "YES" << endl; for(int i=0; i<6; i++){ cout << max + 1 << endl; } }else{ cout << "NO" << endl; } return 0; }