結果

問題 No.231 めぐるはめぐる (1)
ユーザー tsubaki961tsubaki961
提出日時 2016-06-24 00:17:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 526 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 56,016 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-20 00:10:45
合計ジャッジ時間 1,553 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:27:33: warning: ‘ItemNum’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   27 |                         cout << ItemNum << endl;
      |                                 ^~~~~~~

ソースコード

diff #

#include <iostream>
#include <stdlib.h>
#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