結果
| 問題 | No.231 めぐるはめぐる (1) | 
| コンテスト | |
| ユーザー |  tsubaki961 | 
| 提出日時 | 2016-06-24 00:27:47 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 1,000 ms | 
| コード長 | 508 bytes | 
| コンパイル時間 | 420 ms | 
| コンパイル使用メモリ | 54,392 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-08 00:22:35 | 
| 合計ジャッジ時間 | 1,153 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 11 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:26:33: warning: ‘ItemNum’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   26 |                         cout << ItemNum << endl;
      |                                 ^~~~~~~
            
            ソースコード
#include <iostream>
#define DEATH_VALUE 30000
#define EXP DEATH_VALUE * 100
using namespace std;
int main()
{
	int N, i, ItemNum;
	long G, D, Exp_Place, Exp_Order = 0;
	cin >> N;
	for (i = 0; i < N; i++)
	{
		cin >> G >> D;
		Exp_Place = G - D * DEATH_VALUE;
		if (Exp_Place > Exp_Order)
		{
			Exp_Order = Exp_Place;
			ItemNum = i + 1;
		}
	}
	if (Exp_Order * 6 >= EXP)
	{
		cout << "YES" << endl;
		for (i = 1; i <= 6; i++)
		{
			cout << ItemNum << endl;
		}
	}
	else cout << "NO" << endl;
	return 0;
}
            
            
            
        