結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | e1b14069 |
提出日時 | 2016-06-02 18:15:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 502 bytes |
コンパイル時間 | 1,457 ms |
コンパイル使用メモリ | 64,256 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 05:49:15 |
合計ジャッジ時間 | 1,610 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
main.cpp:9:5: warning: built-in function 'exp' declared as non-function [-Wbuiltin-declaration-mismatch] 9 | int exp = 0; | ^~~
ソースコード
#include <iostream> using namespace std; int n; int g[1000000]; int d[100]; int a = 0; int exp = 0; int m = 0; int ans = 0; int main(){ cin >> n; for(int i = 0; i < n; i++){ cin >> g[i] >> d[i]; } m = g[0] - (30000 * d[0]); for(int i = 1; i < n; i++){ exp = g[i] - (30000 * d[i]); if(m < exp){ m = exp; a = i; } } ans = m * 6; if(ans >= 3000000){ cout << "YES" << endl; for(int i = 0; i < 6; i++){ cout << a + 1 << endl; } }else{ cout << "NO" << endl; } }