結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | prog470 |
提出日時 | 2016-09-25 09:58:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 663 bytes |
コンパイル時間 | 759 ms |
コンパイル使用メモリ | 71,684 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 11:41:54 |
合計ジャッジ時間 | 2,672 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:35:53: warning: ‘num’ may be used uninitialized in this function [-Wmaybe-uninitialized] 35 | for (int i = 0; i < 6; i++) cout << num << endl; | ^~~
ソースコード
#include<stdio.h> #include <vector> #include <list> #include <map> #include <set> #include <queue> #include <stack> #include <algorithm> #include <sstream> #include <iostream> #include <string> #include <stdio.h> using namespace std; int main() { int N, G[1005], D[1005]; cin >> N; for (int i = 0; i < N; i++) cin >> G[i] >> D[i]; int sum[1005], m = -1, num; for (int i = 0; i < N; i++) { sum[i] = G[i] - D[i]; if (m <= sum[i]) { m = sum[i]; num = i + 1; } } sort(sum, sum+N); if (sum[N-1]*6 >= 3000000) { cout << "YES" << endl; for (int i = 0; i < 6; i++) cout << num << endl; } else { cout << "NO" << endl; } return 0; }