結果
| 問題 |
No.231 めぐるはめぐる (1)
|
| コンテスト | |
| ユーザー |
tsubaki961
|
| 提出日時 | 2016-06-24 00:17:49 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 526 bytes |
| コンパイル時間 | 609 ms |
| コンパイル使用メモリ | 54,416 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-11 19:08:55 |
| 合計ジャッジ時間 | 1,960 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 WA * 4 |
コンパイルメッセージ
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;
| ^~~~~~~
ソースコード
#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;
}
tsubaki961