結果

問題 No.231 めぐるはめぐる (1)
ユーザー tsubaki961tsubaki961
提出日時 2016-06-24 00:27:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 508 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 54,920 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-25 13:18:37
合計ジャッジ時間 1,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
      |                                 ^~~~~~~

ソースコード

diff #

#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;
}
0