結果

問題 No.231 めぐるはめぐる (1)
ユーザー ミドリムシミドリムシ
提出日時 2017-10-29 18:57:34
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 583 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 54,360 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 22:20:14
合計ジャッジ時間 1,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
 
int main(){
    int N;
    cin >> N;
    int good_efficiency = 0;
    int good_efficiency_dangeon = 0;
    for(int i = 0; i < N; i++){
        int G, D;
        cin >> G >> D;
        if(good_efficiency < G - 30000 * D){
            good_efficiency = G - 30000 * D;
            good_efficiency_dangeon = i + 1;
        }
    }
    if(good_efficiency >= 600000){
        cout << "YES" << endl;
        for(int i = 0; i < 6; i++){
            cout << good_efficiency_dangeon << endl;
        }
    }else{
        cout << "NO" << endl;
    }
}
0